分析一下PHP中的Trait機制原理與用法

2020-07-16 10:05:54
本篇文章給大家分析一下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機制原理與用法的詳細內容,更多請關注TW511.COM其它相關文章!