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

【懒汉模式】与【饿汉模式】

时间:2016-11-08 02:18:32      阅读:328      评论:0      收藏:0      [点我收藏+]

标签:blog   new   nbsp   static   instance   log   let   字节   null   

饿汉模式:

class Singleton {

    private Singleton() {}

    private static Singleton singleton = new Singleton();

    public static Singleton getInstance() {
        return singleton;
    }
}

 

懒汉模式:

public class Singleton {

    private Singleton() {}

    private static Singleton singleton = null;

    public static Singleton getInstance() {
        if (singleton == null) {
            synchronized (Singleton.class) { // 以当前类的字节码对象为锁
                if (singleton == null) {
                    singleton = new Singleton();
                }
            }
        }
        return singleton;
    }
}

 

【懒汉模式】与【饿汉模式】

标签:blog   new   nbsp   static   instance   log   let   字节   null   

原文地址:http://www.cnblogs.com/johnsonwei/p/6041215.html

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