gpt4 book ai didi

PHP new static 和 new self详解

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章PHP new static 和 new self详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

最近在一个视频的评论被问到一个小问题:这里选择用static 而不是self有特殊的考虑么?或者我们可以这样转换一下问题:

PHP 的 new static 和 new self 具体有什么?

其实这个来看一个例子应该就很清晰了:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 所在的类中,比如这里例子的 :

?
1
2
3
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:

PHP new static 和 new self详解

Happy Hacking 。

最后此篇关于PHP new static 和 new self详解的文章就讲到这里了,如果你想了解更多关于PHP new static 和 new self详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com