In Java you can create an abstract class that contains only abstract methods. On the other hand, you can create an interface that declares the same methods. So can you use abstract classes instead of interfaces?
Cheers!
|
In Java you can create an abstract class that contains only abstract methods. On the other hand, you can create an interface that declares the same methods. So can you use abstract classes instead of interfaces? Cheers! |
||||
|
|
|
Not always:
Sun docs make a more detailed comparison:
|
||||
|
|
|
In some cases you can use an abstract class instead of interface. However, it is hardly ever a good idea to do so. In general you should use the rule:
The other "problem" with using abstract classes is that you can then no longer implement mixins, that is you can implement multiple interfaces, however you can only extend one abstract class. |
|||||||
|
|
One point missing from the answers here is the idea of who will be implementing the interface. If your component wants to return instances of abstract types to its callers, where the concrete types are defined internally and hidden from callers, use an interface. Conversely, if your component consumes or accepts instances of abstract types that its callers must implement, abstract classes are usually a better choice. Anticipating evolution and maintaining binary compatibility tips the scales here. With an abstract class, you can add methods and, if you provide a base implementation, existing implementations of the abstract class will continue to work fine. With an interface, adding a method breaks binary compatibility, for no existing implementation could possibly continue to compile properly without changing to define the new method. The Apache Cactus project has a good discussion on how to resolve these obligations. |
||||
|
|
|
To answer your question, yes you could use an abstract class (providing no implementation) instead of an interface but I'd consider this bad practice:
I would advocate the use of abstract classes more in situations where you wish to provide a partial implementation of a class, possibly delegating some behavior to concrete subclass implementations. |
|||
|
|
|
|||
|
|
|
Abstract classes and interfaces are complementary. For instance when creating an API you will want to present interfaces to the client, so that you may always completely change the implementation whereas he does not have to change its code and the user does not rely on implementation when building using your API but just on methods contracts. Then you will have abstract classes partly implementing these interfaces, in order to
|
|||
|
|
|
Interfaces are much cleaner and light weight. Abstract classes make you dependent on it heavily as you cannot extend any other classes. |
|||
|
|
|
Have a look at the interesting article "Why extends is evil" to get an idea about the differences between interface implementation and class inheritance (beside the obvious multi- single restrictions) |
|||
|
|
|
Abstract classes are the partial implementation of Abstraction while Interfaces are the fully implementation of Abstraction.Means in Abstract classes we can put methods declaration as well as method body. We can't create an object of Abstract classes(association) and reuse the class by inheritence(not by association). By default in interfaces all declared variables are static final and All methods are public. For Example: In JDK there are only few abstract classes and HttpServlet is one of them which is used in Servlet.So we can't create object of HttpServlet and it can be used only by inheritence. |
|||
|
|