HummerH2Model.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 HummerH2Model extends HummerModel {
  7. //H2型号的悍马车鸣笛
  8. public void alarm() {
  9. System.out.println("悍马H2鸣笛...");
  10. }
  11. //引擎轰鸣声
  12. public void engineBoom() {
  13. System.out.println("悍马H2引擎声音是这样在...");
  14. }
  15. //汽车发动
  16. public void start() {
  17. System.out.println("悍马H2发动...");
  18. }
  19. //停车
  20. public void stop() {
  21. System.out.println("悍马H2停车...");
  22. }
  23. //开动起来
  24. public void run(){
  25. //先发动汽车
  26. this.start();
  27. //引擎开始轰鸣
  28. this.engineBoom();
  29. //然后就开始跑了,跑的过程中遇到一条狗挡路,就按喇叭
  30. this.alarm();
  31. //到达目的地就停车
  32. this.stop();
  33. }
  34. }