-
-
/**
- * 定义与使用php抽象类
- * edit: bbs.it-home.org
- */
- abstract class number {
- private $value;
- abstract public function value();
- public function reset() {
- $this->value = null;
- }
- }
class Integer extends Number {
- private $value;
- public function value() {
- return (int)$this->value;
- }
- }
$num = new Integer; /* Okay */
- $num2 = new Number; /* This will fail */
- ?>
-
复制代码
|
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn