为了账号安全,请及时绑定邮箱和手机立即绑定

<?php
class Car {
    public $speed = 0; //汽车的起始速度是0
    
    public function speedUp() {
        $this->speed += 10;
        return $this->speed;
    }
}
//定义继承于Car的Truck类
 class Truck extends Car
{
   
  public function speedUp(){     
     $this->speed=Car::speedUp();
     return $this->speed+=40;
  }
}


$car = new Truck();
$car->speedUp();
echo $car->speed;

正在回答

0 回答

举报

0/150
提交
取消
PHP进阶篇
  • 参与学习       181828    人
  • 解答问题       2577    个

轻松学习PHP中级课程,进行全面了解,用PHP快速开发网站程序

进入课程
意见反馈 帮助中心 APP下载
官方微信