PHP中Trait機制的原理是什么?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
成都網(wǎng)絡(luò)公司-成都網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司10年經(jīng)驗成就非凡,專業(yè)從事成都做網(wǎng)站、成都網(wǎng)站設(shè)計,成都網(wǎng)頁設(shè)計,成都網(wǎng)頁制作,軟文發(fā)稿,廣告投放平臺等。10年來已成功提供全面的成都網(wǎng)站建設(shè)方案,打造行業(yè)特色的成都網(wǎng)站建設(shè)案例,建站熱線:028-86922220,我們期待您的來電!Trait介紹:
1、自PHP5.4起,PHP實現(xiàn)了一種代碼復(fù)用的方法,稱為trait。
2、Trait是為類似PHP的單繼承語言二準備的一種代碼復(fù)用機制。
3、Trait為了減少單繼承語言的限制,使開發(fā)人員能夠自由地在不同層次結(jié)構(gòu)內(nèi)獨立的類中復(fù)用method。
4、trait實現(xiàn)了代碼的復(fù)用,突破了單繼承的限制;
5、trait是類,但是不能實例化。
6、當類中方法重名時,優(yōu)先級,當前類>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(){ //調(diào)用Demo1的方法 return $this->hello1(); } public function test2(){ //調(diào)用Demo2的方法 return $this->hello2(); } } $cls = new Demo(); echo $cls->hello(); echo " "; echo $cls->test1(); echo " "; echo $cls->test2();
運行結(jié)果:
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(){ //調(diào)用Demo1的方法 return $this->test(); } public function test2(){ //調(diào)用Demo2的方法 return $this->Demo2test(); } } $cls = new Demo(); echo $cls->test1(); echo " "; echo $cls->test2();
運行結(jié)果:
Demo1::test
Demo2::test
看完上述內(nèi)容,你們掌握PHP中Trait機制的原理是什么的方法了嗎?如果還想學到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!