Java中的单例设计模式举例

Posted

tags:

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

本例中通过将构造函数私有化的方式将实例化对象的代码放到类内部的静态函数中,从而实现单例设计模式。

class Singleton
{
    static Singleton instance = new Singleton();
    private Singleton()
    {

    }

    public static Singleton getInstance()
    {
        return Singleton.instance;
    }


    public void func()
    {
        System.out.println("Hi there, this is a singleton demo.");
    }
}

public class  Hello
{ 
    public static void main(String[] args) 
    { 
        Singleton ins_1 = Singleton.getInstance();
        Singleton ins_2 = Singleton.getInstance();
        Singleton ins_3 = Singleton.getInstance();


        ins_1.func();
        ins_2.func();
        ins_3.func();
    } 
}

 

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

Java中的单例模式

Java中的单例模式

片段作为 Android 中的单例

什么是单例设计模式

JAVA中的单例设计模式-分为懒汉式和饿汉式(附代码演示)

JAVA中的单例设计模式-分为懒汉式和饿汉式(附代码演示)