单例

public class Singleton {  
 
    /* 持有私有静态实例,防止被引用,此处赋值为null,目的是实现延迟加载 */  
    private static Singleton instance = null;  
 
    /* 私有构造方法,防止被实例化 */  
    private Singleton() {  
    }  
 
    /* 静态工程方法,创建实例 */  
    public static Singleton getInstance() {  
        if (instance == null) {  
            instance = new Singleton();  
        }  
        return instance;  
    }  
 
    /* 如果该对象被用于序列化,可以保证对象在序列化前后保持一致 */  
    public Object readResolve() {  
        return instance;  
    }  

 

进化一(synchronized关键字)

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

 

进化二(内部类)

public class Singleton {  
 
    /* 私有构造方法,防止被实例化 */  
    private Singleton() {  
    }  
 
    /* 此处使用一个内部类来维护单例 */  
    private static class SingletonFactory {  
        private static Singleton instance = new Singleton();  
    }  
 
    /* 获取实例 */  
    public static Singleton getInstance() {  
        return SingletonFactory.instance;  
    }  
 
    /* 如果该对象被用于序列化,可以保证对象在序列化前后保持一致 */  
    public Object readResolve() {  
        return getInstance();  
    }  

 

posted @ 2016-04-20 17:41  hq_sunshine  Views(95)  Comments(0)    收藏  举报