PHP は単一継承言語です。PHP 5.4 Traits が登場する前は、PHP クラスは 2 つの基本クラスから同時にプロパティやメソッドを継承できませんでした。これを解決するには問題として、PHP では Traits という機能が導入されました。 (Traits と Go 言語の結合機能は似ています)
使用法: クラス内で use キーワードを使用して結合する Trait 名を宣言し、特定の Trait の宣言では trait キーワードを使用します。特性を直接インスタンス化することはできません。
<?php trait Drive { public $carName = 'BMW'; public function driving() { echo "driving {$this->carName}\n"; } } class Person { public function age() { echo "i am 18 years old\n"; } } class Student extends Person { use Drive; public function study() { echo "Learn to drive \n"; } } $student = new Student(); $student->study(); //输出:Learn to drive $student->age(); //输出:i am 18 years old $student->driving();//输出:driving BMW
結論:
Student クラスは person を継承し、age メソッドを持ちます
Drive を組み合わせることで、運転メソッドと属性 carName を持ちます。
Trait、基底クラス、このクラスに同名のプロパティやメソッドがあった場合、最終的にどちらが保持されるのでしょうか?次のコードでテストしてください:
<?php trait Drive { public function hello() { echo "hello 周伯通\n"; } public function driving() { echo "周伯通不会开车\n"; } } class Person { public function hello() { echo "hello 大家好\n"; } public function driving() { echo "大家都会开车\n"; } } class Student extends Person { use Drive;//trait 的方法覆盖了基类Person中的方法,所以Person中的hello 和driving被覆盖 public function hello() { echo "hello 新学员\n";//当方法或属性同名时,当前类中的方法会覆盖 trait的 方法,所以此处hello会覆盖trait中的 hello } } $student = new Student(); $student->hello(); //输出:hello 新学员 $student->driving(); //输出:周伯通不会开车
結論: メソッドまたは属性が同じ名前を持つ場合、現在のクラスのメソッドはトレイトのメソッドをオーバーライドし、トレイトのメソッドは基本クラスのメソッドをオーバーライドします。 。
複数のトレイトを結合する場合は、トレイト名をカンマで区切ります:
use Trait1, Trait2;
複数のトレイトにメソッドまたはプロパティが含まれている場合はどうなりますか?同じ名前?毛織物?その答えは、結合された複数の特性に同じ名前のプロパティまたはメソッドが含まれている場合、競合を解決するにはそれらを明示的に宣言する必要がある、そうしないと致命的なエラーが発生するということです。
<?php trait Trait1 { public function hello() { echo "Trait1::hello\n"; } public function hi() { echo "Trait1::hi\n"; } } trait Trait2 { public function hello() { echo "Trait2::hello\n"; } public function hi() { echo "Trait2::hi\n"; } } class Class1 { use Trait1, Trait2; } //输出:Fatal error: Trait method hello has not been applied, because there are collisions with other trait methods on Class1 in
代わりに演算子と as 演算子を使用して競合を解決します。代わりにメソッドを使用して別のメソッドを置き換えますが、as はメソッドにエイリアスを与えます。具体的な使用法についてはコードを参照してください:
<?php trait Trait1 { public function hello() { echo "Trait1::hello \n"; } public function hi() { echo "Trait1::hi \n"; } } trait Trait2 { public function hello() { echo "Trait2::hello\n"; } public function hi() { echo "Trait2::hi\n"; } } class Class1 { use Trait1, Trait2 { Trait2::hello insteadof Trait1; Trait1::hi insteadof Trait2; } } class Class2 { use Trait1, Trait2 { Trait2::hello insteadof Trait1; Trait1::hi insteadof Trait2; Trait2::hi as hei; Trait1::hello as hehe; } } $Obj1 = new Class1(); $Obj1->hello(); $Obj1->hi(); echo "\n"; $Obj2 = new Class2(); $Obj2->hello(); $Obj2->hi(); $Obj2->hei(); $Obj2->hehe();
Output
Trait2::hello Trait1::hi Trait2::hello Trait1::hi Trait2::hi Trait1::hello
<?php trait Hello { public function hello() { echo "hello,我是周伯通\n"; } } class Class1 { use Hello { hello as protected; } } class Class2 { use Hello { Hello::hello as private hi; } } $Obj1 = new Class1(); $Obj1->hello(); # 报致命错误,因为hello方法被修改成受保护的 $Obj2 = new Class2(); $Obj2->hello(); # 输出: hello,我是周伯通,因为原来的hello方法仍然是公共的 $Obj2->hi(); # 报致命错误,因为别名hi方法被修改成私有的
Uncaught Error: Call to protected method Class1::hello() from context '' in D:\web\mytest\p.php:18
Trait は Trait と組み合わせることもできます。Trait は抽象メソッド、静的プロパティ、静的メソッドをサポートしています。テスト コードは次のとおりです:
<?php trait Hello { public function sayHello() { echo "Hello 我是周伯通\n"; } } trait World { use Hello; public function sayWorld() { echo "hello world\n"; } abstract public function getWorld(); public function inc() { static $c = 0; $c = $c + 1; echo "$c\n"; } public static function doSomething() { echo "Doing something\n"; } } class HelloWorld { use World; public function getWorld() { return 'do you get World ?'; } } $Obj = new HelloWorld(); $Obj->sayHello(); $Obj->sayWorld(); echo $Obj->getWorld() . "\n"; HelloWorld::doSomething(); $Obj->inc(); $Obj->inc();
出力
Hello 我是周伯通 hello world do you get World ? Doing something12
##
以上がPHP での Trait の使用例と例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。