final关键字的应用

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()

posted @ 2012-08-16 17:55  TBHacker  阅读(180)  评论(0编辑  收藏  举报