Dad.java 266 B

1234567891011121314151617
  1. package course;
  2. /**
  3. * @author WanJl
  4. * @version 1.0
  5. * @title Dad
  6. * @description 父亲
  7. * @create 2026/7/22
  8. */
  9. public class Dad extends Granddad{
  10. int c;
  11. public void eat(){
  12. super.eat();
  13. System.out.println("爸爸爱吃肉....");
  14. }
  15. }