We can extend a class but we cannot implement a class. We can implement an interface, but cannot extend an interface.
In what cases should we be using extends?
|
2
|
We can extend a class but we cannot implement a class. We can implement an interface, but cannot extend an interface. In what cases should we be using extends?
|
||||
|
|
|
extends keyword is used for either extending a concrete/abstract class. By extending, u can either override methods of parent class / inherit them. A class can only extend class. U can also say interface1 extends intenface2. implements keyword is used for implementing interface. In this case u have to define all the methods indicated in interface. A class can only implement interface. |
|||
|
|
|
|
or extending an interface:
Note that interfaces cannot implement other interfaces (most likely because they have no implementation). Java doesn't impose any naming conventions for classes vs. interfaces (in contrast to
Here you can clearly see that you're building upon an existing implementation in |
||
|
|
|
|
Hi Devil: Is a matter of uses. Interfaces can be used as a contract with your application and then base classes can be use to extend that interface, so it is loosely couple. Take for example Injection Dependency pattern: You first write a contract:
Then you extend your contract with a base class:
Now you have the option to extend base into two or more concrete classes:
I hope this small examples clears the differences between extend and Implement. sorry that I did not use java for the example but is all OO, so I think you will get the point. Thanks for reading, Geo I did not complete the code for injection dependency pattern but the idea is there, is also well documented on the net. Let me know if you have any questions. |
||
|
|
|
|
Like you said. the It depends what you would like to do. Typically you would use an interface when you want to force implementation (like a contract). Similar to an Remember in java you can only extend one class and implement zero to many interfaces for the implementing class. Unlike C# where you can extend multiple classes using |
||
|
|
|
|
Actually, you can extend an interface - in the case where you're defining another interface. There are lots of quasi-religious arguments about this issue and I doubt there's a clear right answer, but for what it's worth here's my take on things. Use subclassing (i.e. Note that the two are not mutually exclusive; in fact if a superclass implements an interface, then any subclasses will also be considered to implement that interface. In Java there is no multiple inheritance, so that a (sub)class can only have one parent class, and subclassing should be considered carefully so as to choose an appropriate parent if any at all; choosing a parent that reflects just a small amount of the class' abilities is likely to end in frustration later if there are other sensible parent classes. So for example, having an Additionally, subclassing ties you to implementation details (of your parent) more than implementing an interface does. I'd say that in general it's better merely to implement the interface, at least initially, and only form class hierarchies of classes in the same or similar packages with a clear hierarchical structure. |
||
|
|