您好,登錄后才能下訂單哦!
今天小編給大家分享的是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機制就分享到這里了,希望以上內容可以對大家有一定的參考價值,可以學以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。