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