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 $cls->test1();
echo $cls->test2();

多个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 $cls->test2();

最新文章

  1. Android-Drawable、Bitmap、byte[]、资源文件相互转换
  2. win7中 SQL server 2005无法连接到服务器,错误码:18456
  3. python基础知识---操作文件
  4. python 二叉树
  5. Oracle资源
  6. PowerDesigner连接mysql逆向生成pdm
  7. FQ技术
  8. Asp.Net部分面试题
  9. 旅行喵 React Native 技术实践
  10. Ubuntu12.04下载Android4.0.1源码全过程,附若干问题解决[转]
  11. 更改Windows Live Writer默认日志与草稿保存路径
  12. java:凯撒密码及String的应用
  13. Markdown编辑器editor.md的使用---markdown上传图片
  14. iOS - 数组字典模型根据模型属性key排序
  15. [视频]K8飞刀 Discuz csrf Exp教程
  16. week05 06绑定滚动条 去抖动
  17. Springmvx拦截html出现406解决以及Server Tomcat v8.0 Server at localhost failed to start 问题解决方法
  18. 比特币初始版本VC6.0编译
  19. Oracle 12C -- 删除audit policy
  20. 项目管理PMP输入输出ITTO联系记忆

热门文章

  1. JS与JQ 获取页面元素值的方法和差异对比
  2. history 路由且带二级目录的Apache配置
  3. LeetCode || 双指针 / 单调栈
  4. C05 C语言字符串和数组
  5. Sql Server 自动备份
  6. java中regex参考
  7. iOS开发遇到的坑之三--使用asi框架在xcode下正常运行,但是打包时却不能进行网络访问
  8. PLAYGROUND 可视化
  9. Xcode中的约束用法
  10. phpstorm设置方法头信息备注