码迷,mamicode.com
首页 > 其他好文 > 详细

单例模式

时间:2017-10-29 18:37:32      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:pre   tin   log   共享   csharp   static   sel   访问   sharp   

单例模式

提供对自身共享示例的访问,限制特定对象只能被创建一次.

上面代理模式中同时也使用了单例模式.

class A{
    private static $instance = null;

    private function __contruct(){}

    public static getInstance()
    {
	if (is_null(self::$instance)) {
            self::$instance = new static(); //此处注意和new self的区别
        }
        return self::$instance;
    }
}

调用:
$a = A::getInstance();
$a->getInstance();

  

 

单例模式

标签:pre   tin   log   共享   csharp   static   sel   访问   sharp   

原文地址:http://www.cnblogs.com/itfenqing/p/7750608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!