class Animal { void sound() { System.out.println("Some sound..."); } } class Cat extends Animal { void sound() { System.out.println("Meow"); } }