I created an interface in a file, then a class that implements the interface in another file. If i add a property to the implementation class, is it possible to pass that method signature down to the
I\'m implementing an AVL binary tree data structure in C# .NET 2.0 (possibly moving to 3.5).I\'ve got it to the point where it is passing my initial unit tests without needing to implement any framewo
Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this que开发者_StackOverflowstion? Update the question so it focuses on one problem o
Groovy offers some really neat language features for dealing with and implementing Java interfaces, but I seem kind of stuck.
I have a scenario whereby I want n amount of classes to look at the same data and decide if any work needs t开发者_开发问答o be done. Work is done by a team, and multiple teams can work on the data at
I need to write a function that accepts an object , but I want to enforce in the function call (not after the function is called) that the object is an interface.
It's difficult to tell what is being asked here. This question is amb开发者_开发知识库iguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current for
I need to add some new functionality to an existing interface. There are already a lot o开发者_JAVA百科f classes in the project implementing it but a few of them wouldn\'t need the new set of features
PHP is somewhat crippled since it doesn\'t have return types (yet). I need my code to throw an exception when X already exists. I can write this in a scenario, but I\'m not able to go from the scenari
Lets say I have a inheritance tree of interfaces: IParent > IChild > IGrandChild How would I: Find a class that implements IParent