// Cat类:仅继承Animal,不实现Swimmable public class Cat extends Animal { // 重写父类抽象方法:发出叫声 @Override public void makeSound() { System.out.println("喵喵喵!"); } }