欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php5中抽象类的小例子

程序员文章站 2022-05-07 20:19:15
...
  1. /**

  2. * 定义与使用php抽象类
  3. * edit: bbs.it-home.org
  4. */
  5. abstract class Number {
  6. private $value;
  7. abstract public function value();
  8. public function reset() {
  9. $this->value = NULL;
  10. }
  11. }
  12. class Integer extends Number {

  13. private $value;
  14. public function value() {
  15. return (int)$this->value;
  16. }
  17. }
  18. $num = new Integer; /* Okay */

  19. $num2 = new Number; /* This will fail */
  20. ?>
复制代码