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

Singleton(单例)模式

时间:2017-08-11 15:49:37      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:stat   blog   hive   全局   html   log   它的   private   有一个   

Singleton(单例)模式:保证一个类仅有一个实例,并提供一个访问它的全局访问点。

public class Singleton {
    private static Singleton ourInstance = new Singleton();

    public static Singleton getInstance() {
        return ourInstance;
    }

    private Singleton() {
    }
}

http://www.cnblogs.com/rush/archive/2011/10/30/2229565.html

Singleton(单例)模式

标签:stat   blog   hive   全局   html   log   它的   private   有一个   

原文地址:http://www.cnblogs.com/lkf-00889/p/7345931.html

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