84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
在读PHP Manual的时候,看到类与对象里面属性一节,里面这样说道:
当一个方法在类定义内部被调用时,有一个可用的伪变量 $this。$this 是一个到主叫对象的引用(通常是该方法所从属的对象,但如果是从第二个对象静态调用时也可能是另一个对象)。
在网上搜索了下,对于$this,还是比较理解,但是对于到主叫对象,还是不怎么理解。请问能用简单易懂的描述说明下吗?
假如我和一个厨师都属于人这个类的对象,我们俩都有个方法是做饭。我做饭,那么在做饭的时候$this就是我自己,如果我请这个厨师来我家做饭,那么做饭的时候$this就是这个厨师而不是我
简单点说$this指向的就是当前执行环境的对象
假如我和一个厨师都属于人这个类的对象,我们俩都有个方法是做饭。我做饭,那么在做饭的时候$this就是我自己,如果我请这个厨师来我家做饭,那么做饭的时候$this就是这个厨师而不是我
简单点说$this指向的就是当前执行环境的对象