Ostrich.java 283 B

123456789101112131415
  1. package J20250716.demo03_abstract;
  2. /**
  3. * @author WanJl
  4. * @version 1.0
  5. * @title Ostrich
  6. * @description 鸵鸟
  7. * @create 2025/7/16
  8. */
  9. public class Ostrich extends Bird{
  10. @Override
  11. public void move() {
  12. System.out.println("鸵鸟也不会飞....跑.....");
  13. }
  14. }