PHP 객체 지향 프로그래밍에서
class test{ public static function test(){ self::func(); static::func(); } public static function func(){} }
을 항상 접하게 됩니다. 그런데 self와 static의 차이점을 알고 계십니까?
사실 차이점은 매우 간단합니다. 몇 가지 데모만 작성하면 이해할 수 있습니다.
자신을 위한 데모:
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();
출력 가져오기
This is a car model This is a car model
찾을 수 있으며, self는 여전히 하위 클래스
정적 데모
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();
에서 상위 클래스의 메서드를 호출합니다. 출력
This is a car model This is a Taxi model
정적 호출 시 하위 클래스가 상위 클래스의 메서드를 호출하더라도 상위 클래스 메서드에서 호출된 메서드는 여전히 상위 클래스의 메서드인 것을 알 수 있습니다. 하위 클래스(너무 혼란스럽습니다...)
PHP5.3 버전 이전에는 여전히 static과 self 사이에 약간의 차이가 있었습니다. 결국 모두 버전 7에 의해 지배되었습니다. 더 이상 이해하지 못할 것입니다.
요약하자면 self는 현재 클래스의 메서드만 참조할 수 있으며 static 키워드를 사용하면 함수가 런타임에 클래스의 메서드를 동적으로 바인딩할 수 있습니다.
위 내용은 객체지향 프로그래밍과 정적 콘텐츠를 포함하여 PHP 객체지향 프로그래밍에서 self와 static의 차이점을 소개하고 있습니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.