self::
调用本类属性、方法;可以抑制方法多态性。parent::
调用父类属性、方法。static::
调用静态属性、方法;可以体现多态性。$this->
调用本实例的属性、方法;$this::
可以调用静态属性、方法;但是无法在静态方法里使用;可以体现多态性。->
object-operator, you always know you’re dealing with an instance.::
scope-resolution-operator, you need more information about the context.
|