php中final关键字用法分析

时间:2022-08-23 12:20:18

本文实例讲述了phpfinal关键字用法。分享给大家供大家参考,具体如下:

final关键字只能用来定义类和定义方法。

使用final关键字标记的类不能被继承

?
1
2
3
4
5
6
final class Person{
   .......
}
class Student extends Person{
   .......
}

会出现错误提示。Fatal error :Class Student may not inherit from final class(Person)

使用final关键字标记的方法不能被子类覆盖

?
1
2
3
4
5
6
7
8
9
10
class Person{
   final function Say(){
     ......
   }
}
class Student extends Person{
  function Say(){
    ......
  }
}

会出现下面错误:

Fatal Error:Cannot Override final method Person::say()

希望本文所述对大家PHP程序设计有所帮助。