打字猴:1.700458432e+09
1700458432
1700458433 public class HummerH1Model extends HummerModel{
1700458434
1700458435 //H1型号的悍马车鸣笛
1700458436
1700458437 public void alarm(){
1700458438
1700458439 System.out.println(“悍马H1鸣笛……”);
1700458440
1700458441 }
1700458442
1700458443 //引擎轰鸣声
1700458444
1700458445 public void engineBoom(){
1700458446
1700458447 System.out.println(“悍马H1引擎声音是这样在……”);
1700458448
1700458449 }
1700458450
1700458451 //汽车发动
1700458452
1700458453 public void start(){
1700458454
1700458455 System.out.println(“悍马H1发动……”);
1700458456
1700458457 }
1700458458
1700458459 //停车
1700458460
1700458461 public void stop(){
1700458462
1700458463 System.out.println(“悍马H1停车……”);
1700458464
1700458465 }
1700458466
1700458467 //开动起来
1700458468
1700458469 public void run(){
1700458470
1700458471 //先发动汽车
1700458472
1700458473 this.start();
1700458474
1700458475 //引擎开始轰鸣
1700458476
1700458477 this.engineBoom();
1700458478
1700458479 //然后就开始跑了,跑的过程中遇到一条狗挡路,就按喇叭
1700458480
1700458481 this.alarm();
[ 上一页 ]  [ :1.700458432e+09 ]  [ 下一页 ]