Classes and Objects > 액세스 제어(가시성)
동일한 클래스의 개체는 동일한 인스턴스가 아니더라도 서로의 private 및 protected 멤버에 액세스할 수 있습니다. 이는 이러한 개체의 내부 구현 세부 정보가 알려져 있기 때문입니다.
동일한 객체 유형의 비공개 멤버에 액세스
<?phpclass Test{ private $foo; public function construct($foo) { $this->foo = $foo; } private function bar() { echo 'Accessed the private method.'; } public function baz(Test $other) { // We can change the private property: $other->foo = 'hello'; var_dump($other->foo); // We can also call the private method: $other->bar(); } }$test = new Test('test');$test->baz(new Test('other'));?>
//Discover: 인스턴스 객체를 전달하여 비공개 메소드 및 properties
Classes and Objects>에 대한 외부 액세스 액세스 제어(가시성)
객체 동일한 클래스의 멤버는 동일한 인스턴스가 아니더라도 서로의 private 및 protected 멤버에 액세스할 수 있습니다. 이는 이러한 개체의 내부 구현 세부 정보가 알려져 있기 때문입니다.
동일한 객체 유형의 프라이빗 멤버에 액세스
<?phpclass Test{ private $foo; public function construct($foo) { $this->foo = $foo; } private function bar() { echo 'Accessed the private method.'; } public function baz(Test $other) { // We can change the private property: $other->foo = 'hello'; var_dump($other->foo); // We can also call the private method: $other->bar(); } }$test = new Test('test');$test->baz(new Test('other'));?>
//Discover: 인스턴스 객체를 전달하면 프라이빗 메서드 및 속성에 대한 외부 액세스가 달성됩니다
위 내용은 PHP 클래스 및 객체의 액세스 제어(가시성)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!