public class Dog extends Pet { private String speak; public Dog() { this.speak = "Woof"; } @Override public String speak() { return speak; } }