Inheritance allows one class to acquire properties of another class.
class Animal {
void sound() {
System.out.println(“Animal sound”);
}
}
class Dog extends Animal {
}
Inheritance allows one class to acquire properties of another class.
class Animal {
void sound() {
System.out.println(“Animal sound”);
}
}
class Dog extends Animal {
}