本文实例讲述了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{ u demo1,demo2;//继承demo1和demo2 public function hello(){ return __me三江学院宿舍thod__; } public function test1(){ //调用demo1的方法 return $this->hello1(); } public function test2(){ //调用demo2的方法 return $this->hello2(); }}$cls = new demo();echo $cllimx趋近于0s->hello();echo "
";echo $cls->test1();echo "
";echo $cls->test2();
运行结果:
demo::hello
demo1::hello1
demo2::hello2
多个trait方法重名:
trait demo1{ public function test(){ return __method__; }}trait demo2{ public function test(){ return __method__; }}class demo{ u 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的方法 rtall什么意思eturn $this->demo2test(); }}$cls = new demo();echo $cls->test1();echo "
";echo $cls->test2();
运行结果:
demo1::test
demo2::test
本文发布于:2023-04-08 06:20:40,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/f2ba2ccc87b47e5f16ab2876809f288f.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP的Trait机制原理与用法分析.doc
本文 PDF 下载地址:PHP的Trait机制原理与用法分析.pdf
留言与评论(共有 0 条评论) |