> 백엔드 개발 > PHP 튜토리얼 > php 静态绑定之static::

php 静态绑定之static::

WBOY
풀어 주다: 2016-06-23 13:27:27
원래의
820명이 탐색했습니다.

对于静态绑定中的static::在此不多做解释,我想用实例来证明,这个例子是来自官方文档:

For example one:

class A{   private function foo(){       echo "this is a test function"."<br>";   }   public function test(){       $this->foo();       static::foo();   }}$A=new A();$A->test();
로그인 후 복사

输出结果:
this is a test function
this is a test function

For example Two:

class A{   private function foo(){       echo "this is a test function"."<br>";   }   public function test(){       $this->foo();       static::foo();   }}class B extends A{}$B=new B();$B->test();
로그인 후 복사

输出结果:
this is a test function
this is a test function

For example three:

class A{   private function foo(){       echo "this is a test function"."<br>";   }   public function test(){       $this->foo();       static::foo();   }}class B extends A{}class C extends A{   private function foo(){   }    } $C=new C();$C->test();
로그인 후 복사

输出结果:
this is a test function
( ! ) Fatal error: Call to private method C::foo() from context ‘A’ in D:\www\testXdebug\index.php on line 21
Call Stack
Time Memory Function Location
1 0.0156 135536 {main}( ) …\index.php:0
2 0.0156 135936 A->test( ) …\index.php:35

版权声明:本文为博主原创文章,未经博主允许不得转载。

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿