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

软件工程

开发平台:

Java

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