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

软件工程

开发平台:

Java

  1. /**
  2.  * 
  3.  */
  4. package com.company.section1;
  5. /**
  6.  * @author cbf4Life cbf4life@126.com
  7.  * I'm glad to share my knowledge with you all.
  8.  * 计谋有了,那还要有锦囊
  9.  */
  10. public class Context {
  11. //构造函数,你要使用那个妙计
  12. private IStrategy straegy;
  13. public Context(IStrategy strategy){
  14. this.straegy = strategy;
  15. }
  16. //使用计谋了,看我出招了
  17. public void operate(){
  18. this.straegy.operate();
  19. }
  20. }