PHP 객체 지향 프로그래밍에서는 항상 class test{public static function test(){를 접하게 됩니다. self: :func();static::func();}공용 정적 함수 func(){} }하지만 self와 static의 차이점을 알고 있나요? 사실 차이점은 매우 간단합니다. d 몇 개만 작성하면 됩니다."/> PHP 객체 지향 프로그래밍에서는 항상 class test{public static function test(){를 접하게 됩니다. self: :func();static::func();}공용 정적 함수 func(){} }하지만 self와 static의 차이점을 알고 있나요? 사실 차이점은 매우 간단합니다. d 몇 개만 작성하면 됩니다.">
data-id="1190000005060322" data-license="sa">
PHP 객체 지향 프로그래밍에서는 항상
<code>class test{ public static function test(){ self::func(); static::func(); } public static function func(){} }</code>
을 접하게 되지만 self와 static의 차이점을 알고 계십니까?
사실 차이점은 매우 간단합니다. 이해하려면 몇 가지 데모만 작성하면 됩니다.
자신을 위한 데모:
<code>class Car { public static function model(){ self::getModel(); } protected static function getModel(){ echo "This is a car model"; } } Car::model(); Class Taxi extends Car { protected static function getModel(){ echo "This is a Taxi model"; } } Taxi::model();</code>
출력 가져오기
<code>This is a car model This is a car model </code>
self는 하위 클래스에서 상위 클래스의 메서드를 계속 호출하는 것을 볼 수 있습니다.
정적 데모
<code>class Car { public static function model(){ static::getModel(); } protected static function getModel(){ echo "This is a car model"; } } Car::model(); Class Taxi extends Car { protected static function getModel(){ echo "This is a Taxi model"; } } Taxi::model(); </code>
출력 가져오기
<code>This is a car model This is a Taxi model </code>
보시다시피 static
이 호출될 때 하위 클래스가 상위 클래스의 메서드를 호출하더라도 상위 클래스 메서드에서 호출된 메서드는 여전히 하위 클래스의 메서드가 됩니다(너무 혼란스럽습니다. ..)
PHP5.3 이전에는 여전히 static과 self의 차이가 조금 있습니다. 결국 버전 7의 세계입니다. 더 이상 이해하지 못할 것입니다.
요약하자면 self
은 현재 클래스의 메서드만 참조할 수 있는 반면, static
키워드를 사용하면 함수가 런타임에 클래스의 메서드를 동적으로 바인딩할 수 있습니다.
참고
http://www.programmerinterview.com/index.php/php-questions/php-self-vs-static/
위 내용은 내용의 측면을 포함하여 PHP 객체지향에서 self와 static의 차이점을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.