How to Create Inheritance in JAVA

In this article, you will learn How to Create Inheritance in JAVA.

Example:-

class Vehicle {
  protected String brand = "Samsung";
  public void honk() {
    System.out.println("Mobile, LED!");
  }
}

class Car extends Vehicle {
  private String modelName = "Galaxy";
  public static void main(String[] args) {
    Car myFastCar = new Car();
    myFastCar.honk();
    System.out.println(myFastCar.brand + " " + myFastCar.modelName);
  }
}

 

Comments

Popular posts from this blog

Student Result Management System

What Is The Job Role Of A Customer Support Executive?

TOP RECRUITMENT COMPANIES IN INDIA