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

软件工程

开发平台:

Java

  1. package com.company.section2;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 接头人的职责就是接收命令,并执行
  6.  */
  7. public class Invoker {
  8. //什么命令
  9. private Command command;
  10. //客户发出命令
  11. public void setCommand(Command command){
  12. this.command = command;
  13. }
  14. //执行客户的命令
  15. public void action(){
  16. this.command.execute();
  17. }
  18. }