分析一下PHP中的Trait机制原理与用法
php  /  管理员 发布于 8年前   218
本篇文章给大家分析一下PHP中的Trait机制原理与用法。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

Trait介绍:
1、自PHP5.4起,PHP实现了一种代码复用的方法,称为trait。
2、Trait是为类似PHP的单继承语言二准备的一种代码复用机制。
3、Trait为了减少单继承语言的限制,使开发人员能够自由地在不同层次结构内独立的类中复用method。
4、trait实现了代码的复用,突破了单继承的限制;
5、trait是类,但是不能实例化。
6、当类中方法重名时,优先级,当前类>trait>父类;
7、当多个trait类的方法重名时,需要指定访问哪一个,给其它的方法起别名。
示例:
trait Demo1{ public function hello1(){ return __METHOD__; }}trait Demo2{ public function hello2(){ return __METHOD__; }}class Demo{ use Demo1,Demo2;//继承Demo1和Demo2 public function hello(){ return __METHOD__; } public function test1(){ //调用Demo1的方法 return $this->hello1(); } public function test2(){ //调用Demo2的方法 return $this->hello2(); }}$cls = new Demo();echo $cls->hello();echo "<br>";echo $cls->test1();echo "<br>";echo $cls->test2();运行结果:
Demo::helloDemo1::hello1Demo2::hello2
多个trait方法重名:
trait Demo1{ public function test(){ return __METHOD__; }}trait Demo2{ public function test(){ return __METHOD__; }}class Demo{ use Demo1,Demo2{ //Demo1的hello替换Demo2的hello方法 Demo1::test insteadof Demo2; //Demo2的hello起别名 Demo2::test as Demo2test; } public function test1(){ //调用Demo1的方法 return $this->test(); } public function test2(){ //调用Demo2的方法 return $this->Demo2test(); }}$cls = new Demo();echo $cls->test1();echo "<br>";echo $cls->test2();运行结果:
Demo1::testDemo2::test
更多相关知识,请关注 !!
以上就是分析一下PHP中的Trait机制原理与用法的详细内容,更多请关注其它相关文章!
test1 在
opencode + Oh-my-openagent,我的第一个免费的ai编程智能体管家:Sisyphus中评论 test..122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..Zita 在
Google AI Studio升级全栈 vibe coding体验,可直接构建带登录和数据库的应用中评论 111222..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号
