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

软件工程

开发平台:

Java

  1. package com.company.section4;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class ConcreteCommand2 extends Command {
  7. //声明自己的默认接收者
  8. public ConcreteCommand2(){
  9. super(new ConcreteReciver2());
  10. }
  11. //设置新的接收者
  12. public ConcreteCommand2(Receiver _receiver){
  13. super(_receiver);
  14. }
  15. //每个具体的命令都必须实现一个命令
  16. public void execute() {
  17. //业务处理
  18. super.receiver.doSomething();
  19. }
  20. }