用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

PHP 面向对象 final类与final方法

时间:2015-01-23  来源:西部数据  作者:西部数据

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

来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门