Assessments Jobs & Internships For Recruiters Blog → Take Free Assessment Log In

What is inheritance?

Inheritance allows one class to acquire properties of another class.

class Animal {
void sound() {
System.out.println(“Animal sound”);
}
}

class Dog extends Animal {
}