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

软件工程

开发平台:

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.  */
  7. public class Client {
  8. public static void main(String[] args) {
  9. ILift lift = new Lift();
  10. //首先是电梯门开启,人进去
  11. lift.open();
  12. //然后电梯门关闭
  13. lift.close();
  14. //再然后,电梯跑起来,向上或者向下
  15. lift.run();
  16. //最后到达目的地,电梯挺下来
  17. lift.stop();
  18. }
  19. }