Relative Content

Tag Archive for interfaces

Term for a Class with Multiple Interfaces

Say I have a class that implements multiple interfaces. I pass the same instance around using a different interface, depending on what the consumer is interested in.

The need for adding an interface to every class [duplicate]

This question already has answers here: What is the point of having every service class have an interface? [duplicate] (6 answers) Do I need to use an interface when only one class will ever implement it? (16 answers) Closed 11 years ago. My coworker and I are arguing very hard about this topic. He’s thinking […]

serving up future-proof kinfolk – extensible contract interfaces [closed]

It’s difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago. Ok, I have this human here, but what […]

Programming against a protocol in Objective-C

I stumbled accross the SOLID principles. There is one burning question. Should I always use protocols? I never saw someone using them in the way that a Java developer would use them.