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

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

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

要将 $car->speedUp();注释掉,就行啦

正在回答

3 回答

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 += 60;

    }

}

$car = new Truck();

$car->speedUp();

echo $car->speed;

这么写才符合任务需求

0 回复 有任何疑惑可以回复我~
#1

不懒_不输 提问者

非常感谢!
2015-02-06 回复 有任何疑惑可以回复我~

你那么写,还不如直接echo 出50得了,糊弄自己没有用啊

1 回复 有任何疑惑可以回复我~

什么呀,明显不符合要求;

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信