当前位置:首页 > PHP教程 > php应用 > 列表

分析一下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类的方法重名时,需要指定访问哪一个,给其它的方法起别名。

示例:

  1. trait Demo1{ 
  2.  
  3.  public function hello1(){ 
  4.  
  5.   return __METHOD__
  6.  
  7.  } 
  8.  
  9.  
  10. trait Demo2{ 
  11.  
  12.  public function hello2(){ 
  13.  
  14.   return __METHOD__
  15.  
  16.  } 
  17.  
  18.  
  19. class Demo{ 
  20.  
  21.  use Demo1,Demo2;//继承Demo1和Demo2 
  22.  
  23.  public function hello(){ 
  24.  
  25.   return __METHOD__
  26.  
  27.  } 
  28.  
  29.  public function test1(){ 
  30.  
  31.   //调用Demo1的方法 
  32.  
  33.   return $this->hello1(); 
  34.  
  35.  } 
  36.  
  37.  public function test2(){ 
  38.  
  39.   //调用Demo2的方法 
  40.  
  41.   return $this->hello2(); 
  42.  
  43.  } 
  44.  
  45.  
  46. $cls = new Demo(); 
  47.  
  48. echo $cls->hello(); 
  49.  
  50. echo "<br>"
  51.  
  52. echo $cls->test1(); 
  53.  
  54. echo "<br>"
  55.  
  56. echo $cls->test2(); 

运行结果:

Demo::hello

Demo1::hello1

Demo2::hello2

多个trait方法重名:

  1. trait Demo1{ 
  2.  
  3.  public function test(){ 
  4.  
  5.   return __METHOD__
  6.  
  7.  } 
  8.  
  9.  
  10. trait Demo2{ 
  11.  
  12.  public function test(){ 
  13.  
  14.   return __METHOD__
  15.  
  16.  } 
  17.  
  18.  
  19. class Demo{ 
  20.  
  21.  use Demo1,Demo2{ 
  22.  
  23.   //Demo1的hello替换Demo2的hello方法 
  24.  
  25.   Demo1::test insteadof Demo2; 
  26.  
  27.   //Demo2的hello起别名 
  28.  
  29.   Demo2::test as Demo2test; 
  30.  
  31.  } 
  32.  
  33.  public function test1(){ 
  34.  
  35.   //调用Demo1的方法 
  36.  
  37.   return $this->test(); 
  38.  
  39.  } 
  40.  
  41.  public function test2(){ 
  42.  
  43.   //调用Demo2的方法 
  44.  
  45.   return $this->Demo2test(); 
  46.  
  47.  } 
  48.  
  49.  
  50. $cls = new Demo(); 
  51.  
  52. echo $cls->test1(); 
  53.  
  54. echo "<br>"
  55.  
  56. echo $cls->test2(); 

运行结果:

Demo1::test

Demo2::test

Tags: Trait

分享到: