登录  | 加入社区

黑狼游客您好!登录后享受更多精彩

只需一步,快速开始

新浪微博登陆

只需一步, 快速开始

查看: 457|回复: 0

扣丁学堂浅谈​PHP​中new static()与new self()区别异同分析 ...

[复制链接]

16

主题

0

帖子

0

现金

黑狼菜鸟

Rank: 1

积分
18
发表于 2017-12-6 16:26:48 | 显示全部楼层 |阅读模式 来自 四川
本日扣丁学堂给各人相许先容一下关于PHP中new static与new self的区别异同,信赖对于各人学习PHP步伐计划可以或许带来肯定的资助。题目的因由是当地搭建一个站。发现用PHP 5.2搭建不起来,站PHP代码内里有许多5.3以上的部门,要求更改在5.2下能运行。
xau4llLIl48E4NL4.jpg


改着改着发现了一个地方:
return new static($val);
这是神马,只见过:
return new self($val);
于是网上查了一下,他们两个的区别。
self -就是这个类,是代码段内里的这个类。
static - PHP 5.3加进来的只得是当前这个类,有点像$this的意思,从堆内存中提取出来,访问的是当前实例化的谁人类,那么 static代表的就是谁人类。
照旧看看老外的专业表明吧:
self refers to the same class whose method the new operation takes place in.
static in PHP 5.3's late static bindings refers to whatever class in the hierarchy which you call the method on.
In the following example, B inherits both methods from A. self is bound to A because it's defined in A's implementation of the first method, whereas static is bound to the called class (also see get_called_class ).
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
这个例子根本上一看就懂了吧。
原理相识了,但是题目还没有办理,怎样办理掉 return new static($val);这个题目呢?
实在也简朴就是用 get_class($this);代码如下:
class A {
public function create1 {
$class = get_class($this);
return new $class;
}
public function create2 {
return new static;
}
}
class B extends A {
}
$b = new B;
var_dump(get_class($b->create1), get_class($b->create2));
效果:
string(1) "B"
string(1) "B"
以上就是关于PHP中new static与new self区别异同分析的具体先容,这个static在php单例模式时常用,留意php的版本题目,末了想要学习PHP开辟技能的小同伴不要夷由了,扣丁学堂是你学习PHP技能的最佳选择,想要PHP视频教程的小同伴如今就接洽我们的咨询老师领取吧,时机总是留给有预备的人的!扣丁学堂PHP技能交换群:374332265。




上一篇:写给已有编程履历的​Python​初学者的总结
下一篇:盘货2018年​Python​开辟工程师薪资及就业远景怎么样
您需要登录后才可以回帖 登录 | 加入社区

本版积分规则

 

QQ|申请友链|小黑屋|手机版|Hlshell Inc. ( 豫ICP备16002110号-5 )

GMT+8, 2024-5-15 00:07 , Processed in 0.061920 second(s), 47 queries .

HLShell有权修改版权声明内容,如有任何爭議,HLShell將保留最終決定權!

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表