這篇文章跟大家分析一下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中文網! !
以上是分析一下PHP中的Trait機制原理與用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!