分析一下PHP中的Trait机制原理与用法
发布:smiling 来源: PHP粉丝网 添加日期:2022-06-08 15:26:01 浏览: 评论:0
本篇文章给大家分析一下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::hello
Demo1::hello1
Demo2::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::test
Demo2::test
Tags: Trait
- 上一篇:php的6种输出方式的区别
- 下一篇:最后一页
相关文章
- ·浅谈PHP中的Trait使用方法(2021-11-13)
- ·详解PHP神奇又有用的Trait(2021-11-14)
- ·PHP之认识(二)关于Traits的用法详解(2021-11-16)
- ·在 PHP 和 Laravel 中使用 Traits的方法(2022-01-22)
- ·PHP Trait功能与用法实例分析(2022-03-12)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)