PHP 中 new static 和 new self 的区别,staticself
程序员文章站
2022-05-04 20:29:59
...
PHP 中 new static 和 new self 的区别,staticself
今天老大在公司 问了一下 new static 和 new self 的区别 公司十个程序 竟然没有一个回答上来 后面画面自补 。。。
本屌丝回家后 就百度了解了下 这二者区别 :
使用 self:: 或者 __CLASS__ 对当前类的静态引用,取决于定义当前方法所在的类:
使用 static:: 不再被解析为定义当前方法所在的类,而是在实际运行时计算的。也可以称之为“静态绑定”,因为它可以用于(但不限于)静态方法的调用。
简单通俗的来说, self就是写在哪个类里面, 实际调用的就是这个类.所谓的后期静态绑定, static代表使用的这个类, 就是你在父类里写的static,
然后通过子类直接/间接用到了这个static, 这个static指的就是这个子类, 所以说static和$this很像, 但是static可以用于静态方法和属性等.
请看列子
php class 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: gaojin Person::callself(); // output: xiaosan Person::callstatic(); // output:gaojin ?>
小编继续学习中
上一篇: angular4和nodejs-express构建一个简单的网站
下一篇: 2PHP缓存种
推荐阅读
-
PHP的new static和new self的区别与使用
-
php中关于self和static代表本类的区别详解
-
PHP中static关键字以及与self关键字的区别
-
php 中self,this的区别和操作方法实例分析
-
深入理解Python中的 __new__ 和 __init__及区别介绍
-
PHP中new static() 和 new self() 的区别介绍
-
php new static与new self 的区别
-
Java中res.add(list)和res.add(new ArrayList<Integer>(list))的区别
-
php类中static与self的使用区别浅析
-
php面向对象程序设计中self与static的区别分析