下面我们举个栗子:
class father { public static function getlf() { return new lf(); } public static function getstatic() { return new static(); }}class son extends father {}echo get_class(son::getlf()); // fatherecho get_class(son::getstatic()); // sonecho get_class(father::getlf()); // fatherecho get_class(father::getstatic()); // father
new lf
这里面注意这一行 get_class(son::getstatic()); 返回的是 son 这个 class, 可以总结如下:
lf 返回的是 new lf 中关键字 new 所在的类中,比如这里例子的 :
人大代表的权利public static function getlf() { return new lf(); // new 关键字在 father 这里}
始终返回 father。
栖息的近义词new static
static 则上面的基础上,更聪明一点点:static 会返回执行 new static() 的类,比如 son 执行 get_class(son::getstatic()) 返回的是 son, father寒假小结 执行 get_class(高尔夫球杆多少钱father::getstatic()) 返回的是 father
而在没有继承的情况下,可以认为 new lf 和 new static 是返生日祝福语短信回相同的结果。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。
本文发布于:2023-04-08 05:12:15,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/ceb5b3486c5db91f09083f2b8657a4f8.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP的new static和new self的区别与使用.doc
本文 PDF 下载地址:PHP的new static和new self的区别与使用.pdf
留言与评论(共有 0 条评论) |