今天小编给大家分享的是PHP中的Trait机制介绍,相信很多人都不太了解,为了让大家更加了解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
关于PHP中的Trait机制就分享到这里了,希望以上内容可以对大家有一定的参考价值,可以学以致用。如果喜欢本篇文章,不妨把它分享出去让更多的人看到。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。