Fatal error: Class SuperMath may not inherit from final class (Math) in E:PHPProjects est.php on line 14
- <?php
-
- class Math{
- public static $pi = 3.14;
- public function __toString(){
- return "这是Math类。";
- }
- public final function max($a,$b){
- return $a > $b ? $a : $b ;
- }
- }
-
- class SuperMath extends Math {
- public final function max($a,$b){}
- }
-
-
- ?>
- <?php
-
- final class Math{
- public static $pi = 3.14;
-
- public function __toString(){
- return "这是Math类。";
- }
- }
- $math = new Math();
- echo $math;
-
-
- class SuperMath extends Math {
- }
-
-
- ?>
Fatal error: Class SuperMath may not inherit from final class (Math) in E:PHPProjects est.php on line 16 |