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

正在回答

2 回答

可以

<?php

class Car {

    public $speed = 0;

    //增加speedUp方法,使speed累加10

    function speedUp() {

        $this -> speed = ($this -> speed + 10); 

        $this -> speed += 10;

        echo $this -> speed + 10;

        echo '<br/>';

        return $this -> speed + 10;

    }

    

}

$car = new Car();

print_r($car->speedUp());

echo '<br/>';

echo $car -> speedUp();

echo '<br/>';

echo $car->speed;


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

$this -> speed += 10; 分号写错了!

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

举报

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