要调用父类的常量,可以使用parent::常量名
语法。
以下是一个示例:
class ParentClass {
const MY_CONSTANT = "Hello World";
}
class ChildClass extends ParentClass {
public function printConstant() {
echo parent::MY_CONSTANT;
}
}
$child = new ChildClass();
$child->printConstant(); // 输出 "Hello World"
在上面的示例中,ChildClass
继承了ParentClass
,并且ChildClass
中的printConstant()
方法调用了父类的常量MY_CONSTANT
。通过parent::MY_CONSTANT
语法,可以在子类中访问父类的常量。在这个例子中,调用printConstant()
方法将输出父类的常量值"Hello World"。
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站