| Author |
Interface inheritace
|
sameera liyanage
Ranch Hand
Joined: Nov 25, 2008
Posts: 643
|
|
is that true interface doesn't support inheritance?
then what happen when we extends one interface to another
|
 |
Hector Tenedero
Ranch Hand
Joined: Oct 13, 2008
Posts: 31
|
|
|
This should clear things out
|
 |
sameera liyanage
Ranch Hand
Joined: Nov 25, 2008
Posts: 643
|
|
No,i didn't get the answer
is interface support inheritance
tell me "yes or no"
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12909
|
|
|
An interface can extend another interface, and so an interface can inherit method signatures from another interface. So yes, interfaces do support inheritance.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
Larry Frissell
Ranch Hand
Joined: May 16, 2008
Posts: 82
|
|
Jesper, I am not sure that I agree, I guess the answer would depend on the meaning of "inheritance". In the Sun tutorial in the discussion of inheritance it states "Object-oriented programming allows classes to inherit commonly used state and behavior from other classes". In the discussions of interfaces they use the term "extends" when they rewrite the interface, but not inherit.
My point is that you can add methods to an interface, but you can not inherit the state or behavior.
|
 |
 |
|
|
subject: Interface inheritace
|
|
|