<?php
class Car {
protected function speedUp() {
$this->speed += 10;
//增加start方法,使他能够调用受保护的方法speedUp实现加速10
public function start(){
$this->speedUp();
}
}
//protected本来在外面不能访问,通过转为public共有的,就可以访问。这样设置是为了安全,不给随便访问。
class Car {
protected function speedUp() {
$this->speed += 10;
//增加start方法,使他能够调用受保护的方法speedUp实现加速10
public function start(){
$this->speedUp();
}
}
//protected本来在外面不能访问,通过转为public共有的,就可以访问。这样设置是为了安全,不给随便访问。
2015-04-17