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

按提示输入出错了


 Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in /543/zjM/index.php on line 17

正在回答

2 回答

我试的没错,你再试试

<?php
class Car {
    private $speed = 0;
    
    public function getSpeed() {
        return $this->speed;
    }
    
    protected function speedUp() {
        $this->speed += 10;
    }
    
    //增加start方法,使他能够调用受保护的方法speedUp实现加速10
    public function start(){
        $this->speedUp();
    }


}
$car = new Car();
$car->start();
echo $car->getSpeed();


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

一般这种情况都是分号!

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

举报

0/150
提交
取消

按提示输入出错了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信