
ReflectionMethod::isFinal() 메서드는 클래스의 메서드가 final로 선언되었는지 확인하는 메서드입니다.
final로 선언된 메서드는 오버라이딩을 할 수 없다는 점은, 해당 메서드를 상속받은 클래스에서 재정의하거나 오버라이딩할 수 없다는 것을 의미합니다.
이 메서드의 사용 예를 들어보겠습니다.
#hostingforum.kr
php
class ParentClass {
public final function parentMethod() {
echo "Parent method";
}
}
class ChildClass extends ParentClass {
// 오버라이딩이 불가능합니다.
// public function parentMethod() {
// echo "Child method";
// }
}
$reflectionMethod = new ReflectionMethod('ChildClass', 'parentMethod');
echo $reflectionMethod->isFinal() ? 'true' : 'false'; // true
위 예제에서, ParentClass의 parentMethod() 메서드는 final로 선언되어 있습니다. 따라서 ChildClass에서 parentMethod() 메서드를 오버라이딩할 수 없습니다. ReflectionMethod::isFinal() 메서드를 사용하여 final로 선언된 메서드를 확인할 수 있습니다.
2025-04-02 21:00