| Author |
Does every interface extend class Object?
|
Gyanesh Sharma
Ranch Hand
Joined: Nov 27, 2005
Posts: 47
|
|
I know every class extend Object by default. Is this true with Interfaces too? A related question would be, can an interface extend another class? Thanks
|
 |
Steve Morrow
Ranch Hand
Joined: May 22, 2003
Posts: 657
|
|
|
Interfaces do not extend Object. Interfaces may extend other interfaces.
|
 |
 |
|
|
subject: Does every interface extend class Object?
|
|
|