在方法(function)
为什么
class car{
private $color = '颜色';
public function getcolor(){
return $this ->color; (为什么这里要用return)
}
}
class car{
private $color = '颜色';
public function speedUp(){
$this ->speed +=10;; (为什么这里不用return)
}
}