public class CyberDog extends CyberPet { public CyberDog(String name) { super(name); // Call the superclass constructor } public void eat() { super.eat(); // Call the superclass's eat() System.out.println("Eating dogfood. Arf!"); } } // CyberDog