<? |
//声明一个final类Math |
final class Math{ |
public static $pi = 3.14; |
|
public function __toString(){ |
return "这是Math类。" ; |
} |
} |
$math = new Math(); |
echo $math ; |
//声明类SuperMath 继承自 Math类 |
class SuperMath extends Math { |
} |
//执行会出错,final类不能被继承。 |
?> |