Java supports multi-level inheritance as C++.
class A : Internally inherits java.lang.Object
class B : Inherits class A
class C : Inherits class B
class Main : Internally inherits java.lang.Object and calls the methods in classes A,B and C.
class A : Internally inherits java.lang.Object
class B : Inherits class A
class C : Inherits class B
class Main : Internally inherits java.lang.Object and calls the methods in classes A,B and C.
No comments:
Post a Comment