php new self()和new static(),phpnewselfstatic_PHP教程
程序员文章站
2022-04-11 13:45:57
...
php new self()和new static(),phpnewselfstatic
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_static()); // A
self 指的是解析上下文,而不是调用上下文。例子里,self被解析为定义get_self()的A,而不是解析为调用self的B。
php5.3中引入了延迟静态绑定的概念,该特性最明显的标志就是新关键字static。static指的是被调用的类。例子里B::get_static()将生产新的B,而不是实例化一个A
推荐阅读
-
PHP中new static()与new self()的区别异同分析
-
PHP中new static() 和 new self() 的区别介绍_PHP
-
PHP中new static()与new self()的区别异同分析_PHP
-
php中new self()和new static()两者之间的区别!
-
PHP的new static和new self的区别与使用
-
PHP中new static()与new self()的区别异同分析
-
PHP的new static和new self的区别与使用
-
PHP中new static() 和 new self() 的区别介绍
-
php new static与new self 的区别
-
PHP中new static()与new self()的区别异同分析