You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
269 B

// Cat.java
public class Cat extends Animal {
public Cat(String name) {
super(name);
}
// 实现父类的抽象方法
@Override
public void makeSound() {
System.out.println(this.getName() + ":喵喵喵!");
}
}