package com.inmind.abstract07; public class Cat extends Animal{ //对抽象父类的抽象方法进行具体的实现 @Override public void eat() { System.out.println("猫吃鱼"); } }