分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 技术分享

PHP的Trait机制

发布时间:2023-09-06 02:23责任编辑:苏小强关键词:PHP

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();

 

 

PHP的Trait机制

原文地址:https://www.cnblogs.com/gyfluck/p/9994640.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved