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

软件工程

开发平台:

Java

  1. package com.company.section3;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class ModenPostOffice {
  7. private ILetterProcess letterProcess = new LetterProcessImpl();
  8. private Police letterPolice = new Police();
  9. //写信,封装,投递,一体化了
  10. public void sendLetter(String context,String address){
  11. //帮你写信
  12. letterProcess.writeContext(context);
  13. //写好信封
  14. letterProcess.fillEnvelope(address);
  15. //警察要检查信件了
  16. letterPolice.checkLetter(letterProcess);
  17. //把信放到信封中
  18. letterProcess.letterInotoEnvelope();
  19. //邮递信件
  20. letterProcess.sendLetter();
  21. }
  22. }