首页 > 其他分享 >单例模式

单例模式

时间:2022-09-26 16:00:47浏览次数:41  
标签:Singleton getInstance 模式 class instance static 单例 public

单例模式

1.饿汉式(静态常量)/(静态代码块)

代码

package singleton.type1;

public class SingleTest01 {
    public static void main(String[] args) {
        Singleton instance = Singleton.getInstance();
        Singleton instance1 = Singleton.getInstance();
        System.out.println(instance==instance1);
    }
}
//饿汉式(静态变量)
class Singleton{
    //1.构造器私有化,外部不能new
    private Singleton(){}

    //2.本类内部创建对象实例
    private final static Singleton instance = new Singleton();

    //3.对外提供公有的静态方法返回实例对象
    public static Singleton getInstance() {
        return instance;
    }
}
//----------------------------------------------------------------------------
package singleton.type2;

public class SingleTest02 {
    public static void main(String[] args) {
        Singleton instance = Singleton.getInstance();
        Singleton instance1 = Singleton.getInstance();
        System.out.println(instance==instance1);
    }
}
//饿汉式(静态代码块儿)
class Singleton{
    //1.构造器私有化,外部不能new
    private Singleton(){}
    //2.本类内部创建对象实例
    private  static Singleton instance ;
    static{
        instance=new Singleton();
    }
    //3.对外提供公有的静态方法返回实例对象
    public static Singleton getInstance() {
        return instance;
    }
}

优缺点:

简单,但没有实现懒加载机制,会造成内存浪费

2.懒汉式(线程不安全)

代码

package singleton.type3;

public class SingleTest03 {
    public static void main(String[] args) {
        Singleton instance = Singleton.getInstance();
        Singleton instance1 = Singleton.getInstance();
        System.out.println(instance==instance1);
    }
}
//懒汉式(线程不安全)
class Singleton{
    private static Singleton instance;
    //1.构造器私有化,外部不能new
    private Singleton(){}

    //提供一个静态的公有方法,当使用到该方法时,才去创建instance
    public static Singleton getInstance() {
        if (instance == null) {
            instance = new Singleton();
        }
        return instance;
    }
}

3.懒汉式(线程安全,同步方法)

public class SingleTest04 {
    public static void main(String[] args) {
        Singleton instance = Singleton.getInstance();
        Singleton instance1 = Singleton.getInstance();
        System.out.println(instance==instance1);
    }
}
//懒汉式(线程安全,同步方法)
class Singleton{
    private static Singleton instance;
    //1.构造器私有化,外部不能new
    private Singleton(){}

    //提供一个静态的公有方法,当使用到该方法时,才去创建instance
    public static synchronized Singleton getInstance() {
        if (instance == null) {
            instance = new Singleton();
        }
        return instance;
    }
}

效率太低

4.懒汉式(线程安全,双重检查,推荐使用)

public class SingleTest06 {
    public static void main(String[] args) {
        Singleton instance = Singleton.getInstance();
        Singleton instance1 = Singleton.getInstance();
        System.out.println(instance==instance1);
    }
}
//懒汉式(线程安全,双重检查)
class Singleton{
    private static volatile Singleton instance;
    //1.构造器私有化,外部不能new
    private Singleton(){}
    //提供一个静态的公有方法,加入双重检查代码,解决线程安全问题,同时解决懒加载的问题
    public static synchronized Singleton getInstance() {
        if (instance == null) {
            synchronized (Singleton.class){
                if (null == instance ){
                    instance = new Singleton();
                }
            }
        }
        return instance;
    }
}

推荐使用,即解决了线程安全问题,又实现了懒加载。

5.静态内部类(推荐使用)

public class SingleTest07 {
    public static void main(String[] args) {
        Singleton instance = Singleton.getInstance();
        Singleton instance1 = Singleton.getInstance();
        System.out.println(instance==instance1);
    }
}
//静态内部类
class Singleton{
    //1.构造器私有化,外部不能new
    private Singleton(){}
    //写一个静态内部类,该类中有一个静态属性Singleton
    private static class SinglentonInstance{
        //jvm类加载时时线程安全的, 静态类只加载一次时单例的。
        private static final Singleton INSTANCE=new Singleton();
    }
    // 提供一个静态的共有的方法返回实例
    public static  Singleton getInstance() {
        return SinglentonInstance.INSTANCE;
    }
}

6.枚举(推荐使用)

public class SingletonTest08 {
    public static void main(String[] args) {
        Singleton instance = Singleton.INSTANCE;
        Singleton instance1 = Singleton.INSTANCE;
        System.out.println(instance==instance1);
    }
}
enum Singleton{
    INSTANCE;
    public void sayOK(){
        System.out.println("ok~");
    }
}

标签:Singleton,getInstance,模式,class,instance,static,单例,public
From: https://www.cnblogs.com/yufou/p/16731243.html

相关文章

  • 前后端开发模式,restful规范,序列化与反序列化,cbv源码
    1.前后端开发模式后端人员写前后端混合开发项目==》使用模板语法渲染   后端人员写前后端分离项目 ==》后端人员只负责写API,使用postman来测试接口,前端的人专......
  • 面向机器学习工程师的 Python 设计模式:Observer
    Photoby杰森梁on不飞溅面向机器学习工程师的Python设计模式:Observer了解如何通过采用设计模式来构建代码:基于Instagram的示例介绍模式描述了一个经常出现的......
  • 【设计模式】之责任链模式
    定义责任链模式(ChainofResponsibilityPattern)中,有一条由请求处理者对象组成的链条,每个对象(除最后一个对象外)都持有下一个对象的引用,请求发送者将请求发送给第一个对象,......
  • 原型模式(创建型)
    原型模式介绍定义:用一个已经创建的实例作为原型,通过复制该原型对象来创建一个和原型对象相同的新对象。简单理解,就是当需要创建一个指定的对象时,我们刚好有一个这样的对......
  • 抽象工厂模式 Abstract Factory
    “对象创建”模式通过“对象创建”模式绕开new,来避免对象创建(new)过程中所导致的紧耦合(依赖具体类),从而支持对象创建的稳定。它是接口抽象之后的第一步工作。典型模式......
  • iOS13 禁用深色模式
    iOS13之后,新增了一个深色模式,但有时候我们并喜欢这个模式所以需要禁用深色模式全局禁用在info.plist文件中,添加一对key-string<key>UIUserInterfaceStyle</key><......
  • 初识设计模式 - 代理模式
    简介概念举个简单的例说明代理模式就是:假如现在需要买一辆二手车,可以自己去找车源、做质量检测等一系列车辆过户的流程,但是这实在太浪费时间和精力了,其实可以通过找中介......
  • reactor的三种模式
    Reactor响应式编程,是NIO的编程设计模式 单reactor单线程模式:简单NIO例子中,选择器循环和业务处理线程都用一个线程。也是最简单的NIO编程模式。   单Reacto......
  • 设计模式---享元模式
    简述类型:结构型目的:降低对象创建时大量属性也随之被新建而带来的性能上的消耗话不多说,我们看一个案例。优化案例最初版v0现在需要采购一批办公用的电脑,以下是Compu......
  • 密码学奇妙之旅、01 CFB密文反馈模式、AES标准、Golang代码
    CFB密文反馈模式CFB密文反馈模式属于分组密码模式中的一种。加密与解密使用同一结构,加密步骤生成用于异或的密钥流。其弥补了ECB电子密码本模式的不足(明文中的重复排列会......