36.hierarchical_inheritance
/*hierarchical_inheritance
A
|
---------
| |
B C
*/
class A
{
void showA()
{
System.out.println("showA method of class A called");
}
}
class B extends A
{
void showB()
{
System.out.println("showB method of class B called");
}
}
class C extends A
{
void showC()
{
System.out.println("showC method of class C called");
}
}
class hierarchical_inheritance{
public static void main(String[] args) {
B obj1 = new B();
C obj2 = new C();
obj1.showA();
obj1.showB();
obj2.showA();
obj2.showC();
}
}
OUTPUT:
showA method of class A called
showB method of class B called
showA method of class A called
showC method of class C called
Comments
Post a Comment