Duckling.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 Duckling implements Duck {
  7. public void cry() {
  8. System.out.println("叫声是嘎——嘎——嘎");
  9. }
  10. public void desAppearance() {
  11. System.out.println("外形是黄白相间,嘴长");
  12. }
  13. //鸭子的其他行为,比如游泳
  14. public void desBehavior(){
  15. System.out.println("会游泳");
  16. }
  17. }