UglyDuckling.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:0k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.adapter;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class UglyDuckling extends WhiteSwan implements Duck {
  7. //丑小鸭的叫声
  8. public void cry() {
  9. super.cry();
  10. }
  11. //丑小鸭的外形
  12. public void desAppearance() {
  13. super.desAppaearance();
  14. }
  15. //丑小鸭的其他行为
  16. public void desBehavior(){
  17. //丑小鸭不仅会游泳
  18. System.out.println("会游泳");
  19. //还会飞行
  20. super.fly();
  21. }
  22. }