I am new to Java language. I want to know what are the advantages of interfaces in Java? Why not we implement classes and extend them? And whenever we require a method to perform in a certain way, we can just override it. Or we can also use Virtual Functions (If Java supports them, i am not sure though). Please guide me in this regard.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by Kal, Paul Sonier, emboss, Jarrod Roberson, Jacob Aug 2 '11 at 18:43
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, see the FAQ.
|
Interfaces are a way of enforcing a certain structure, but without actually implementing the internal workings of the structure. This is essentially how API's work; the user of a company's API sees and makes use of the structure, but can't actually see how the structure was implemented. |
|||
|
|
|
Some facts about interface here. Google will give you a lot of information too... |
|||||||||
|
|