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

软件工程

开发平台:

Java

  1. package com.company.section4;
  2. import java.io.BufferedReader;
  3. import java.io.IOException;
  4. import java.io.InputStreamReader;
  5. /**
  6.  * @author cbf4Life cbf4life@126.com
  7.  * I'm glad to share my knowledge with you all.
  8.  * 客户开始使用这个模型
  9.  */
  10. public class Client {
  11. public static void main(String[] args) throws IOException {
  12. System.out.println("-------H1型号悍马--------");
  13. System.out.println("H1型号的悍马是否需要喇叭声响?0-不需要   1-需要");
  14. String type=(new BufferedReader(new InputStreamReader(System.in))).readLine();
  15. HummerH1Model h1 = new HummerH1Model();
  16. if(type.equals("0")){  
  17. h1.setAlarm(false);
  18. }
  19. h1.run();
  20. System.out.println("n-------H2型号悍马--------");
  21. HummerH2Model h2 = new HummerH2Model();
  22. h2.run();  
  23. }
  24. }