package Class; public class Cat extends Animal{ Cat() { System.out.println("Object is created"); } @Override void makeSound() { super.eat(); // to use that parent function here. System.out.println("Meoow"); } }