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

软件工程

开发平台:

Java

  1. package com.company.section7;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Context {
  7. //委托处理
  8. private ClassA a = new ClassA();
  9. private ClassC c = new ClassC();
  10. //复杂的计算
  11. public void complexMethod(){
  12. this.a.doSomethingA();
  13. this.c.doSomethingC();
  14. }
  15. }