이 글은 주로 PHP에서 특성을 사용하는 방법에 대한 자세한 설명을 소개합니다. 관심 있는 친구들이 참고하면 도움이 될 것입니다. 보다 간단히 말하면, 클래스가 기본 클래스의 속성과 메소드를 통합하고 싶지만 다른 기본 클래스의 메소드도 갖고 싶어하는 문제를 해결하기 위해 PHP에서 특성 키워드를 사용하며 일반적으로 특성을 함께 사용합니다. 사용.
<?php trait Drive { public $carName = 'trait'; public function driving() { echo "driving {$this->carName}\n"; } } class Person { public function eat() { echo "eat\n"; } } class Student extends Person { use Drive; public function study() { echo "study\n"; } } $student = new Student(); $student->study(); $student->eat(); $student->driving(); ?>
출력 결과는 다음과 같습니다.
study eat driving trait
위의 예에서 Student 클래스는 Person을 상속받아 eat 메소드를 갖게 되며, Drive를 결합하여 Driving 메소드를 가지게 됩니다. 그리고 carName 속성.
Trait, 기본 클래스, 이 클래스에 같은 이름을 가진 속성이나 메서드가 있으면 결국 어떤 것이 유지되나요?
<?php trait Drive { public function hello() { echo "hello drive\n"; } public function driving() { echo "driving from drive\n"; } } class Person { public function hello() { echo "hello person\n"; } public function driving() { echo "driving from person\n"; } } class Student extends Person { use Drive; public function hello() { echo "hello student\n"; } } $student = new Student(); $student->hello(); $student->driving(); ?>
출력 결과는 다음과 같습니다.
hello student driving from drive
따라서 메서드나 속성의 이름이 같은 경우 현재 클래스의 메서드가 해당 클래스의 메서드를 재정의한다고 결론지었습니다. 특성의 메서드 및 특성의 메서드는 기본 클래스의 메서드를 재정의합니다.
여러 특성을 결합하려면 특성 이름을 쉼표로 구분하세요.
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; } ?>
출력 결과는 다음과 같습니다.
코드 복사코드는 다음과 같습니다.
PHP 치명적인 오류: Trait 메서드 hello가 적용되지 않았습니다. ~/php54/trait_3.php 라인 20
의 Class1에 있는 다른 특성 메서드와 충돌합니다. 대신에 연산자를 사용하여 다른 메서드를 대체하고 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(); ?>
출력 결과는 다음과 같습니다.
Trait2::hello Trait1::hi Trait2::hello Trait1::hi Trait2::hi Trait1::hello
키워드에는 메소드의 액세스 제어를 수정하는 또 다른 용도가 있습니다.
Trait는 Trait, Trait과 결합할 수도 있습니다. 추상 메서드, 정적 속성 및 정적 메서드를 지원합니다.
<?php trait Hello { public function sayHello() { echo "Hello\n"; } } trait World { use Hello; public function sayWorld() { echo "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 'get World'; } } $Obj = new HelloWorld(); $Obj->sayHello(); $Obj->sayWorld(); echo $Obj->getWorld() . "\n"; HelloWorld::doSomething(); $Obj->inc(); $Obj->inc(); ?>
출력 결과는 다음과 같습니다.
Hello World get World Doing something 1 2
관련 권장사항:
사용에 대한 자세한 단계별 가이드위 내용은 PHP에서 특성을 사용하는 방법에 대한 자세한 그래픽 및 텍스트 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!