Answers for "first multi level level inheritance then multiple inheritance and last multi level inheritsnce"

0

java program to demonstrate multilevel inheritance

Class X
{
   public void methodX()
   {
     System.out.println("Class X method");
   }
}
Class Y extends X
{
public void methodY()
{
System.out.println("class Y method");
}
}
Class Z extends Y
{
   public void methodZ()
   {
     System.out.println("class Z method");
   }
   public static void main(String args[])
   {
     Z obj = new Z();
     obj.methodX(); //calling grand parent class method
     obj.methodY(); //calling parent class method
     obj.methodZ(); //calling local method
  }
}
Posted by: Guest on September-08-2020

Code answers related to "first multi level level inheritance then multiple inheritance and last multi level inheritsnce"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language