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

软件工程

开发平台:

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 direcotr {
  7. public static void main(String[] args) {
  8. System.out.println("n=======演戏过程模拟==========n");
  9. //定义一个大明星
  10. IStar star = new FilmStar();
  11. star.act("前十五分钟,明星本人演戏");
  12. //导演把一个普通演员认为是一个明星演员
  13. IActor actor = new UnknownActor();
  14. IStar standin= new Standin(actor);
  15. standin.act("中间五分钟,替身在演戏");
  16. star.act("后十五分钟,明星本人演戏");
  17. }
  18. }