当前位置:Gxlcms > PHP教程 > PHP中newstatic跟newself的区别

PHP中newstatic跟newself的区别

时间:2021-07-01 10:21:17 帮助过:14人阅读

PHP 中 new static 和 new self 的区别

今天老大在公司 问了一下 new static 和 new self 的区别 公司十个程序 竟然没有一个回答上来 后面画面自补 。。。

本屌丝回家后 就百度了解了下 这二者区别 :

使用 self:: 或者 __CLASS__ 对当前类的静态引用,取决于定义当前方法所在的类:

使用 static:: 不再被解析为定义当前方法所在的类,而是在实际运行时计算的。也可以称之为“静态绑定”,因为它可以用于(但不限于)静态方法的调用。

简单通俗的来说, self就是写在哪个类里面, 实际调用的就是这个类.所谓的后期静态绑定, static代表使用的这个类, 就是你在父类里写的static,

然后通过子类直接/间接用到了这个static, 这个static指的就是这个子类, 所以说static和$this很像, 但是static可以用于静态方法和属性等.

请看列子

phpclass Person{    public static function name()    {        echo "xiaosan";    }    public static function callself()    {        self::name();    }    public static function callstatic()    {        static::name();    }}class Man extends Person{    public static function name()    {        echo "gaojin";    }}Man::name();  // output: gaojinPerson::callself();  // output: xiaosanPerson::callstatic();  // output:gaojin?>

小编继续学习中

人气教程排行