new self() 和 new static() 的区别
程序员文章站
2024-03-17 19:43:04
...
1、new static()是在php5.3版本引入的新特性
2、无论是 new static 还是 new self() 都是 new 一个对象
3、这两个方法new 出来的对象 有什么区别呢?说白了就是new出来的到底是同一个类的实列还是不同类的实列
为了探究上面的问题、我们先上一段简单的代码
class Father
{
public function getNewFather()
{
return new self();
}
public function getNewCaller()
{
return new static();
}
}
$f = new Father();
var_dump(get_class($f->getNewFather())); // Father
var_dump(get_class($f->getNewCaller())); // Father
这里无论是getNewFather还是getNewCaller都是返回的 Father 这个实列
到这里貌似 new self() 还是 new static() 是没有区别的 我们接着走
class Sun1 extends Father
{
}
$sun1 = new Sun1();
var_dump($sun1->getNewFather()); // object(Father)#4 (0) { }
var_dump($sun1->getNewCaller()); // object(Sun1)#4 (0) { }
这里我们发现了 getNewFather 返回的是Father的实列,
而getNewCaller 返回的是调用者的实列
现在明白了 new self() 和 new static 的区别了
他们的区别只有在继承中才能体现出来、如果没有任何继承、那么二者没有任何区别
然后 new self() 返回的实列是不会变的,无论谁去调用,都返回的一个类的实列,
而 new static则是由调用者决定的。
推荐阅读
-
new self() 和 new static() 的区别
-
new self() 和 new static() 的区别
-
PHP中new self()和new static()的区别探究
-
派生类中new方法和override重载方法的区别
-
C#方法隐藏new、虚方法virtual、重写override及隐藏和重写的区别
-
java 中的String 和new String 的区别 博客分类: JDK//Demo Stringnew String()
-
探究JS 加new 情况下 不使用return 和使用return 的情况(本文已弃,错误太多,不修改了。不删)
-
Java中new和反射创建对象的区别(底层)
-
浅谈PHP中new self()和new static()的区别
-
PHP面向对象中new self()与 new static()的区别浅析