PHP final 关键字
示例
使用 final
关键字阻止类的继承
<?php
final class MyClass {
public $name = "John";
}
// 此代码将抛出错误
class AnotherClass extends MyClass{};
?>
定义和用法
The final
关键字用于阻止类被继承,以及阻止继承的方法被覆盖。
相关页面
在我们的 PHP OOP - Inheritance Tutorial 中阅读有关继承的更多信息。
❮ PHP 关键字