Suppose, if my class inherited from an interface, can super() be used in method of the class? An interface has no concrete method. How can super() be used? What will happen?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
You cannot inherit from an interface in Java. Your class will be inherited from Object. And so it is Object's constructor you call. |
|||
|
|
|
Any class will inherit from |
|||
|
|
|
a class cannot inherit from interface - inheritance from interface is allawed only by another interface. so in that case there's no use for the super() method (since there's no implementation). |
|||
|
|
