gpt4 book ai didi

PHP的Trait机制原理与用法分析

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 24 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章PHP的Trait机制原理与用法分析由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例讲述了PHP的Trait机制原理与用法。分享给大家供大家参考,具体如下:

Trait介绍:

1、自PHP5.4起,PHP实现了一种代码复用的方法,称为trait。 2、Trait是为类似PHP的单继承语言二准备的一种代码复用机制。 3、Trait为了减少单继承语言的限制,使开发人员能够自由地在不同层次结构内独立的类中复用method。 4、trait实现了代码的复用,突破了单继承的限制; 5、trait是类,但是不能实例化。 6、当类中方法重名时,优先级,当前类>trait>父类; 7、当多个trait类的方法重名时,需要指定访问哪一个,给其它的方法起别名.

示例:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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方法重名:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 。

希望本文所述对大家PHP程序设计有所帮助.

原文链接:https://www.cnblogs.com/gyfluck/p/9994640.html 。

最后此篇关于PHP的Trait机制原理与用法分析的文章就讲到这里了,如果你想了解更多关于PHP的Trait机制原理与用法分析的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com