单例模式

Posted zhenhong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单例模式相关的知识,希望对你有一定的参考价值。

一、单例模式之饿汉模式

 

package com.singleton;

public class SingletonHungry {

    private static SingletonHungry singletonHungry = new SingletonHungry();
    
    private SingletonHungry() {}
    
    public static SingletonHungry getInstance() {
        
        return singletonHungry;
    }
    
    
    
    
    
}

 

二、懒汉模式

package com.singleton;

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

}

三、测试

package com.singleton;

public class Test {
    
    public static void main(String[] args) {
        
        SingletonHungry singletonHungry1 = SingletonHungry.getInstance();
        SingletonHungry singletonHungry2 = SingletonHungry.getInstance();
        
        System.out.println(singletonHungry1 == singletonHungry2);
        
        
        SingletonLazy singletonLazy1 = SingletonLazy.getInstance();
        SingletonLazy singletonLazy2 = SingletonLazy.getInstance();
        
        System.out.println(singletonLazy1 == singletonLazy2);
        
    }

}

四、结果

true

true

 

以上是关于单例模式的主要内容,如果未能解决你的问题,请参考以下文章

常用代码片段

性能比较好的单例写法

片段作为 Android 中的单例

单例片段或保存网页视图状态

你熟悉的设计模式都有哪些?写出单例模式的实现代码

单例模式以及静态代码块