php new self()和new static(),phpnewselfstatic
程序员文章站
2022-04-11 13:46:09
...
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中关于self和static代表本类的区别详解
-
PHP中new static() 和 new self() 的区别介绍
-
php new static与new self 的区别
-
PHP中new static()与new self()的区别异同分析
-
PHP中new static() 和 new self() 的区别介绍
-
php面向对象编程self和static的区别 matlab面向对象编程 c#面向对象编程思想 面向对象编程语
-
PHP中new static()与new self()的区别异同分析_PHP
-
PHP中new static与new self的区别
-
PHP中new static与new self的区别