Inheritance
Inheritance
Key Points:
1. Superclass (Parent class): The class whose properties and methods are inherited.
2. Subclass (Child class): The class that inherits the properties and methods from the
superclass.
class Vehicle {
// Field
String brand;
// Constructor
this.brand = brand;
// Method
super(brand);