当前位置:首页 > PHP教程 > php应用 > 列表

PHP实现一个限制实例化次数的类示例

发布:smiling 来源: PHP粉丝网  添加日期:2021-12-17 17:31:02 浏览: 评论:0 

本文实例讲述了PHP实现一个限制实例化次数的类,分享给大家供大家参考,具体如下:

实现思路

定义一个static变量$count,用于保存实例化对象的个数

定义一个static方法create,通过该方法判断$count的值,进而判断是否进一步实例化对象。

定义构造函数,$count+1

定义析构函数,$count-1

实现代码

  1. <?php 
  2. class demo{ 
  3.   public $name
  4.   public static $count=0; 
  5.   private function __construct($name){ 
  6.     echo "create $name <br/>"
  7.     $this->name = $name
  8.     self::$count++; 
  9.   } 
  10.   public function __destruct(){ 
  11.     echo "destory ".$this->name."<br/>"
  12.     self::$count--; 
  13.   } 
  14.   public static function create($name){ 
  15.     if(self::$count>2){ 
  16.       die("you can only create at most 2 objects."); 
  17.     }else
  18.       return new self($name); 
  19.     } 
  20.   } 
  21. $one = demo::create("one"); 
  22. $two = demo::create("two"); 
  23. $two = null; 
  24. $three = demo::create("three"); 

运行结果:

  1. create one 
  2. create two 
  3. destory two 
  4. create three 
  5. destory three 
  6. destory one

Tags: PHP限制实例化次数

分享到: