PHP new static 和 new self详解
程序员文章站
2024-03-07 17:21:15
最近在一个视频的评论被问到一个小问题:这里选择用static 而不是self有特殊的考虑么?或者我们可以这样转换一下问题:
php 的 new static 和 new...
最近在一个视频的评论被问到一个小问题:这里选择用static 而不是self有特殊的考虑么?或者我们可以这样转换一下问题:
php 的 new static 和 new self 具体有什么?
其实这个来看一个例子应该就很清晰了:
class father { public static function getself() { return new self(); } public static function getstatic() { return new static(); } } class son extends father {} echo get_class(son::getself()); // father echo get_class(son::getstatic()); // son echo get_class(father::getself()); // father echo get_class(father::getstatic()); // father
这里面注意这一行 get_class(son::getstatic());
返回的是 son
这个 class,可以总结如下:
new self
1.self
返回的是 new self
中关键字 new
所在的类中,比如这里例子的 :
public static function getself() { return new self(); // new 关键字在 father 这里 }
始终返回 father
。
new static
2.static
则上面的基础上,更聪明一点点:static
会返回执行 new static()
的类,比如 son
执行 get_class(son::getstatic())
返回的是 son
, father
执行 get_class(father::getstatic())
返回的是 father
而在没有继承的情况下,可以认为 new self
和 new static
是返回相同的结果。
tips: 可以用一个好的 ide 来直接看注释。比如 phpstorm:
happy hacking
推荐阅读
-
PHP new static 和 new self详解
-
PHP中new static()与new self()的比较
-
new static() 和 new self() 的区别异同,staticself
-
PHP 中 new static 跟 new self 的区别
-
PHP中new static() 和 new self() 的区别介绍
-
PHP 中 new static 跟 new self 的区别
-
PHP5中的this,self和parent关键字详解
-
php中new self()详解_PHP教程
-
php new self()和new static(),phpnewselfstatic
-
PHP 中 new static 和 new self 的区别