php new self()和new static()

Posted tianxintian22

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php new self()和new static()相关的知识,希望对你有一定的参考价值。

class A {
  public static function get_self() {
    return new self();
  }
 
  public static function get_static() {
    return new static();
  }
}
 
class B extends A {}
 
echo get_class(B::get_self()); // A
echo get_class(B::get_static()); // B
echo get_class(A::get_self()); // A
echo get_class(A::get_static()); // A

self 指的是解析上下文,而不是调用上下文。例子里,self被解析为定义get_self()的A,而不是解析为调用self的B。

php5.3中引入了延迟静态绑定的概念,该特性最明显的标志就是新关键字static。static指的是被调用的类。例子里B::get_static()将生产新的B,而不是实例化一个A

以上是关于php new self()和new static()的主要内容,如果未能解决你的问题,请参考以下文章

php -- new self() 和 new static

PHP 的 new static 和 new self

PHP中new static() 和 new self() 的区别

PHP new self()和new static()的区别

PHP中new self()和new static()的区别探究

php 小知识随手记 new self() 和new static()作用和区别