Maison >développement back-end >tutoriel php >php中final关键字用法分析

php中final关键字用法分析

黄舟
黄舟original
2016-12-16 17:01:311289parcourir

本文实例讲述了php中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()

 以上就是php中final关键字用法分析内容,更多相关文章请关注PHP中文网(www.php.cn)!


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent:php中this关键字用法分析Article suivant:php 文件上传实例代码