PHP 中 new static 和 new self 的区别
程序员文章站
2022-05-16 20:40:23
...
今天老大在公司 问了一下 new static 和 new self 的区别 公司十个程序 竟然没有一个回答上来 后面画面自补 。。。
本屌丝回家后 就百度了解了下 这二者区别 :
使用 self:: 或者 __CLASS__ 对当前类的静态引用,取决于定义当前方法所在的类:
使用 static:: 不再被解析为定义当前方法所在的类,而是在实际运行时计算的。也可以称之为“静态绑定”,因为它可以用于(但不限于)静态方法的调用。
简单通俗的来说, self就是写在哪个类里面, 实际调用的就是这个类.所谓的后期静态绑定, static代表使用的这个类, 就是你在父类里写的static,
然后通过子类直接/间接用到了这个static, 这个static指的就是这个子类, 所以说static和$this很像, 但是static可以用于静态方法和属性等.
请看列子
php class Person { publicstaticfunction name() { echo "xiaosan"; } publicstaticfunction callself() { self::name(); } publicstaticfunction callstatic() { static::name(); } } class Man extends Person { publicstaticfunction name() { echo "gaojin"; } } Man::name(); // output: gaojinPerson::callself(); // output: xiaosanPerson::callstatic(); // output:gaojin?>
小编继续学习中
以上就介绍了PHP 中 new static 和 new self 的区别,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
下一篇: PHP中的include和require
推荐阅读