I'm not asking this question out of spite, but I really want to know, because I might be missing something. Almost every Java book I read talks about using the interface as a way to share state and behavior between objects that when first "constructed" did not seem to share a relationship. However, whenever I see architects design an application, the first thing they do is start coding to an interface. How come? How do you know all the relationships between objects that will occur within that interface? If you already know those relationships, then why not just extend an abstract class?
|
|
Programming to an interface means respecting the "contract" created by using that interface. And so if your |
|||||||||||||||
|
|
Great question. I'll refer you to Josh Bloch in Effective Java, who writes (item 16) why to prefer the use of interfaces over abstract classes. By the way, if you haven't got this book, I highly recommend it! Here is a summary of what he says:
What about the advantage of abstract classes providing basic implementation? You can provide an abstract skeletal implementation class with each interface. This combines the virtues of both interfaces and abstract classes. Skeletal implementations provide implementation assistance without imposing the severe constraints that abstract classes force when they serve as type definitions. For example, the Collections Framework defines the type using interfaces, and provides a skeletal implementation for each one. |
||||
|
|
|
Programming to interfaces provides several benefits:
|
|||||
|
|
I think one of the reasons abstract classes have largely been abandoned by developers might be a misunderstanding. When the Gang of Four wrote:
there was no such thing as a java or C# interface. They were talking about the object-oriented interface concept, that every class has. Erich Gamma mentions it in this interview. I think following all the rules and principles mechanically without thinking leads to a difficult to read, navigate, understand and maintain code-base. Remember: The simplest thing that could possibly work. |
||||
|
|
|
How come? Because that's what all the books say. Like the GoF patterns, many people see it as universally good and don't ever think about whether or not it is really the right design. How do you know all the relationships between objects that will occur within that interface? You don't, and that's a problem. If you already know those relationships, then why not just extend an abstract class? Reasons to not extend an abstract class:
If neither apply, go ahead and use an abstract class. It will save you a lot of time. Questions you didn't ask: What are the down-sides of using an interface? You cannot change them. Unlike an abstract class, an interface is set in stone. Once you have one in use, extending it will break code, period. Do I really need either? Most of the time, no. Think really hard before you build any object hierarchy. A big problem in languages like Java is that it makes it way too easy to create massive, complicated object hierarchies. Consider the classic example LameDuck inherits from Duck. Sounds easy, doesn't it? Well, that is until you need to indicate that the duck has been injured and is now lame. Or indicate that the lame duck has been healed and can walk again. Java does not allow you to change an objects type, so using sub-types to indicate lameness doesn't actually work. |
||||
|
|
This is the single most misunderstood thing about interfaces. There is no way to enforce any such contract with interfaces. Interfaces, by definition, cannot specify any behaviour at all. Classes are where behaviour happens. This mistaken belief is so widespread as to be considered the conventional wisdom by many people. It is, however, wrong. So this statement in the OP
is just not possible. Interfaces have neither state nor behaviour. They can define properties, that implementing classes must provide, but that's as close as they can get. You cannot share behaviour using interfaces. You can make an assumption that people will implement an interface to provide the sort of behaviour implied by the name of its methods, but that's not anything like the same thing. And it places no restrictions at all on when such methods are called (eg that Start should be called before Stop). This statement
is also incorrect. The GoF book uses exactly zero interfaces, as they were not a feature of the languages used at the time. None of the patterns require interfaces, although some can use them. IMO, the Observer pattern is one in which interfaces can play a more elegant role (although the pattern is normally implemented using events nowadays). In the Visitor pattern it is almost always the case that a base Visitor class implementing default behaviour for each type of visited node is required, IME. Personally, I think the answer to the question is threefold:
Interfaces are a very useful language feature, but are much abused. Symptoms include:
All these things are code smells, IMO. |
|||
|
|
|
It's one way to promote loose coupling.
A good use of this concept is Abstract Factory pattern. In the Wikipedia example, GUIFactory interface produces Button interface. The concrete factory may be WinFactory (producing WinButton), or OSXFactory (producing OSXButton). Imagine if you are writing a GUI application and you have to go look around all instances of |
|||
|
|
|
In my opinion, you see this so often because it is a very good practice that is often applied in the wrong situations. There are many advantages to interfaces relative to abstract classes:
You gain the most advantage from interfaces when dealing with modules of code. However, there is no easy rule to determine where module boundaries should be. So this best practice is easy to over-use, especially when first designing some software. |
|||
|
|
|
I would assume (with @eed3s9n) that it's to promote loose coupling. Also, without interfaces unit testing becomes much more difficult, as you can't mock up your objects. |
|||
|
|
|
Why extends is evil. This article is pretty much a direct answer to the question asked. I can think of almost no case where you would actually need an abstract class, and plenty of situations where it is a bad idea. This does not mean that implementations using abstract classes are bad, but you will have to take care so you do not make the interface contract dependent on artifacts of some specific implementation (case in point: the Stack class in Java). One more thing: it is not necessary, or good practice, to have interfaces everywhere. Typically, you should identify when you need an interface and when you do not. In an ideal world, the second case should be implemented as a final class most of the time. |
|||
|
|
|
There are some excellent answers here, but if you're looking for a concrete reason, look no further than Unit Testing. Consider that you want to test a method in the business logic that retrieves the current tax rate for the region where a transaction occurrs. To do this, the business logic class has to talk to the database via a Repository:
Throughout the code, use the type IRepository instead of TaxRateRepository. The repository has a non-public constructor to encourage users (developers) to use the factory to instantiate the repository:
The factory is the only place where the TaxRateRepository class is referenced directly. So you need some supporting classes for this example:
And there is also another other implementation of IRepository - the mock up:
Because the live code (Business Class) uses a Factory to get the Repository, in the unit test you plug in the MockRepository for the TaxRateRepository. Once the substitution is made, you can hard code the return value and make the database unneccessary.
Remember, you want to test the business logic method only, not the repository, database, connection string, etc... There are different tests for each of those. By doing it this way, you can completely isolate the code that you are testing. A side benefit is that you can also run the unit test without a database connection, which makes it faster, more portable (think multi-developer team in remote locations). Another side benefit is that you can use the Test-Driven Development (TDD) process for the implementation phase of development. I don't strictly use TDD but a mix of TDD and old-school coding. |
|||
|
|
|
In one sense, I think your question boils down to simply, "why use interfaces and not abstract classes?" Technically, you can achieve loose coupling with both -- the underlying implementation is still not exposed to the calling code, and you can use Abstract Factory pattern to return an underlying implementation (interface implementation vs. abstract class extension) to increase the flexibility of your design. In fact, you could argue that abstract classes give you slightly more, since they allow you to both require implementations to satisfy your code ("you MUST implement start()") and provide default implementations ("I have a standard paint() you can override if you want to") -- with interfaces, implementations must be provided, which over time can lead to brittle inheritance problems through interface changes. Fundamentally, though, I use interfaces mainly due to Java's single inheritance restriction. If my implementation MUST inherit from an abstract class to be used by calling code, that means I lose the flexibility to inherit from something else even though that may make more sense (e.g. for code reuse or object hierarchy). |
|||
|
|
|
One reason is that interfaces allow for growth and extensibility. Say, for example, that you have a method that takes an object as a parameter, public void drink(coffee someDrink) { } Now let's say you want to use the exact same method, but pass a hotTea object. Well, you can't. You just hard-coded that above method to only use coffee objects. Maybe that's good, maybe that's bad. The downside of the above is that it strictly locks you in with one type of object when you'd like to pass all sorts of related objects. By using an interface, say IHotDrink, interface IHotDrink { } and rewrting your above method to use the interface instead of the object, public void drink(IHotDrink someDrink) { } Now you can pass all objects that implement the IHotDrink interface. Sure, you can write the exact same method that does the exact same thing with a different object parameter, but why? You're suddenly maintaining bloated code. |
|||
|
|
|
Its all about designing before coding. If you dont know all the relationships between two objects after you have specified the interface then you have done a poor job of defining the interface -- which is relatively easy to fix. If you had dived straight into coding and realised half way through you are missing something its a lot harder to fix. |
|||
|
|
|
You could see this from a perl/python/ruby perspective :
I think considering java interfaces as an analogy to that would best explain this . You don't really pass a type , you just pass something that responds to a method ( a trait , if you will ). |
|||
|
|
|
I think the main reason to use interfaces in Java is the limitation to single inheritance. In many cases this lead to unnecessary complication and code duplication. Take a look at Traits in Scala: http://www.scala-lang.org/node/126 Traits are a special kind of abstract classes, but a class can extend many of them. |
|||
|
|