单例模式

Posted 1950137408

tags:

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

单例模式的三个步骤
 1.构造方法私有化
 2.定义一个静态的本类成员
 3.设计一个静态的接口用来返回上面定义的那个类对象成员


package aaaa;

class singleton{
    
    public static singleton instance = null;    //静态的本类成员
    private singleton() {        //构造方法私有化
        
    }
    public static singleton getInstance() {        //设计一个静态的接口来返回上面定义的那类本类成员
        if(instance == null) {
            instance = new singleton();
        }
        return instance;
    }
    
    
}

public class demo1 {
    public static void main(String[] args) {
        singleton instance1 = singleton.getInstance();
        singleton instance2 = singleton.getInstance();
        
        System.out.println(instance1 + "  "+ instance2);
    }
}

 

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

常用代码片段

性能比较好的单例写法

片段作为 Android 中的单例

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

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

单例模式以及静态代码块