涛涛的声音
2015-08-18 14:06
还是不调清楚$this的含义和作用,谁能为我解答一下
class Car {
private $speed = 0;
public function getSpeed() {
return $this->speed;
}
protected function speedUp() {
$this->speed += 10;
}
//增加start方法,使他能够调用受保护的方法speedUp实现加速10
public function start(){
return $this->speedup();
}
}
class Car {//定义一个类
private $speed = 0;//定义属性
public function getSpeed() {//定义方法
return $this->speed;//$this 是php里面的伪变量,表示对象自身.可以通过$this->的方式访问对象的属性和方法,这里是返回speed属性的值
}
}
http://www.imooc.com/learn/184 这里面有详细的介绍面向对象的课程
PHP进阶篇
181837 学习 · 2577 问题
相似问题