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

软件工程

开发平台:

Java

  1. package com.company.decorator;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Decorator implements Swan {
  7. private Swan swan;
  8. //修饰的是谁
  9. public Decorator(Swan _swan){
  10. this.swan =_swan;
  11. }
  12. public void cry() {
  13. swan.cry();
  14. }
  15. public void desAppaearance() {
  16. swan.desAppaearance();
  17. }
  18. public void fly() {
  19. swan.fly();
  20. }
  21. }