Cat.java 256B

12345678910111213141516
  1. import java.util.Date;
  2. /**
  3. * @author leon on 4/19/18.
  4. */
  5. public class Cat extends Mammal {
  6. public Cat(String name, Date birthDate, Integer id) {
  7. super(name, birthDate, id);
  8. }
  9. public String speak() {
  10. return "meow!";
  11. }
  12. }