Multilevel Inheritance in java

Java Programming Language / Class, Object and Methods in java

3297

Program:

 class Animal{
void eat(){
	System.out.println("eating...");
	}
}

class Dog extends Animal{
 void bark(){System.out.println("barking...");
 }
}

class BabyDog extends Dog{
 void weep(){System.out.println("weeping...");
 }
}

class MultilevelInheritance{
	public static void main(String args[]){
	BabyDog d=new BabyDog();
	d.weep();
	d.bark();
	d.eat();
	}
}

  

Output:

weeping...
barking...
eating...
Press any key to continue . . .

Explanation:

This Java code demonstrates multilevel inheritance where the BabyDog class extends the Dog class, which in turn extends the Animal class. The Animal class has a method called eat() that prints "eating...". The Dog class has a method called bark() that prints "barking...". The BabyDog class has a method called weep() that prints "weeping...". In the main() method of the MultilevelInheritance class, an instance of the BabyDog class is created and its methods are called. This code shows how a subclass can inherit properties and behaviors from multiple levels of superclasses.


This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.