php 静态绑定之static::
Jun 23, 2016 pm 01:27 PM
对于静态绑定中的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
版权声明:本文为博主原创文章,未经博主允许不得转载。

Heißer Artikel

Hot-Tools-Tags

Heißer Artikel

Heiße Artikel -Tags

Notepad++7.3.1
Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version
Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1
Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6
Visuelle Webentwicklungstools

SublimeText3 Mac-Version
Codebearbeitungssoftware auf Gottesniveau (SublimeText3)

Heiße Themen

11 beste PHP -URL -Shortener -Skripte (kostenlos und Premium)

Arbeiten mit Flash -Sitzungsdaten in Laravel

Vereinfachte HTTP -Reaktion verspottet in Laravel -Tests

Erstellen Sie eine React -App mit einem Laravel -Back -Ende: Teil 2, reagieren

Curl in PHP: So verwenden Sie die PHP -Curl -Erweiterung in REST -APIs

12 Beste PHP -Chat -Skripte auf Codecanyon
