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

软件工程

开发平台:

Java

  1. package com.company.section2;
  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.setState(ILift.STOPPING_STATE);
  12. //首先是电梯门开启,人进去
  13. lift.open();
  14. //然后电梯门关闭
  15. lift.close();
  16. //再然后,电梯跑起来,向上或者向下
  17. lift.run();
  18. //最后到达目的地,电梯挺下来
  19. lift.stop();
  20. }
  21. }