亲宝软件园·资讯

展开

static实现单例模式

灵剑山真人 人气:0

一、之前旧的写法

class Singleton{
    private Singleton() {}
    private static Singleton instance = null;
    public synchronized static Singleton getInstance() {
            if (instance == null) {
                instance = new Singleton();
            }
            return instance;
        }
}

就利用Sington.getInstace就可以了,获得的是同一个实例。

上面那个代码有两个优点:

加载全部内容

相关教程
猜你喜欢
用户评论