当前位置:首页 > PHP教程 > php面向对象 > 列表

PHP 面向对象 final类与final方法

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-09 16:53:42 浏览: 评论:0 

Fatal error: Class SuperMath may not inherit from final class (Math) in E:PHPProjects est.php on line 14

  1. <?php 
  2. //声明一个final类Math  
  3. class Math{  
  4. public static $pi = 3.14;  
  5. public function __toString(){  
  6. return "这是Math类。";  
  7. }  
  8. public final function max($a,$b){  
  9. return $a > $b ? $a : $b ;  
  10. }  
  11. }  
  12. //声明类SuperMath 继承自 Math类  
  13. class SuperMath extends Math {  
  14. public final function max($a,$b){}  
  15. }  
  16. //执行会出错,final方法不能被重写。 
  17.  
  18. ?>  
  19. <?php 
  20. //声明一个final类Math  
  21. final class Math{  
  22. public static $pi = 3.14; 
  23.  
  24. public function __toString(){  
  25. return "这是Math类。";  
  26. }  
  27. }  
  28. $math = new Math();  
  29. echo $math
  30.  
  31. //声明类SuperMath 继承自 Math类  
  32. class SuperMath extends Math {  
  33. //开源代码phpfensi.com 
  34. //执行会出错,final类不能被继承。 
  35.  
  36. ?> 

Fatal error: Class SuperMath may not inherit from final class (Math) in E:PHPProjects est.php on line 16

Tags: PHP面向对象 final类 final方法

分享到: