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

软件工程

开发平台:

Java

  1. package com.company.section1;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Client {
  7. public static void main(String[] args) {
  8. //创建一个处理信件的过程
  9. ILetterProcess letterProcess = new LetterProcessImpl();
  10. //开始写信
  11. letterProcess.writeContext("Hello,It's me,do you know who I am? I'm your old lover. I'd like to....");
  12. //开始写信封
  13. letterProcess.fillEnvelope("Happy Road No. 666,God Province,Heaven");
  14. //把信放到信封里,并封装好
  15. letterProcess.letterInotoEnvelope();
  16. //跑到邮局把信塞到邮箱,投递
  17. letterProcess.sendLetter();
  18. }
  19. }