问答详情
源自:2-7 PHP类和对象之访问控制

答案之中的答案

speed;    }    protected function speedUp() {        $this->speed += 10;    }    public function start(){        $this->speedUp();    } } $car = new Car(); $car->start(); echo $car->getSpeed();

提问者:慕容兰馨 2015-05-30 23:38

个回答

  • qq_华_12
    2015-12-14 23:25:53

    没看明白要问什么