本文共 513 字,大约阅读时间需要 1 分钟。
final关键字只能用来定义类和定义方法。
使用final关键字标记的类不能被继承
final class Person{ .......}class Student extends Person{ .......}
会出现错误提示。Fatal error :Class Student may not inherit from final class(Person)
使用final关键字标记的方法不能被子类覆盖
class Person{ final function Say(){ ...... }}class Student extends Person{ function Say(){ ...... }}
会出现下面错误:
Fatal Error:Cannot Override final method Person::say()
本文转自TBHacker博客园博客,原文链接:http://www.cnblogs.com/jiqing9006/archive/2012/08/16/2642755.html,如需转载请自行联系原作者