单例模式实现

简介: 1. 单线程可用 2. 使用final常量 3. 加锁构造 4. 方法级加锁 5. 静态内部类实现,多线程可用 6. 拒绝强行反射创建我

1. 单线程可用

public class Singleton {

    private static Singleton singleton;

    private Singleton() {
    }

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

2. 使用final常量

public class Singleton {

    private static final Singleton singleton = new Singleton();

    private Singleton() {
    }

    public static Singleton getInstance() {
        return singleton;
    }
}

3. 加锁构造

public class Singleton {

    private static Singleton singleton;

    private static final Lock LOCK = new ReentrantLock();

    private Singleton() {
    }

    public static Singleton getInstance() {
        if (null == singleton) {
            LOCK.lock();
            if (null == singleton) {
                singleton = new Singleton();
            }
            LOCK.unlock();
        }
        return singleton;
    }
}

4. 方法级加锁

public class Singleton {

    private static Singleton singleton;

    private Singleton() {
    }

    public static Singleton getInstance() {
        if (null == singleton) {
            init();
        }
        return singleton;
    }

    private static synchronized void init(){
        if(null == singleton){
            singleton = new Singleton();
        }
    }
}

5. 静态内部类实现,多线程可用

public class Singleton {

    private Singleton() {
    }

    public static Singleton getInstance() {
        return Container.singleton;
    }

    private static class Container {
        private static Singleton singleton = new Singleton();
    }
}

6. 拒绝强行反射创建我

public class Singleton {

    private Singleton() {
        if (null != Container.singleton) {
            throw new UnsupportedOperationException(); // 报错啦
        }
    }

    public static Singleton getInstance() {
        return Container.singleton;
    }

    private static class Container {
        private static Singleton singleton = new Singleton();
    }
}
目录
相关文章
|
6月前
|
设计模式 安全
详细讲解什么是单例模式
详细讲解什么是单例模式
|
6月前
|
设计模式
单例模式
单例模式
34 0
|
安全 Java
原来要这么实现单例模式
原来要这么实现单例模式
55 0
找对象需要单例模式吗?
单例模式的类只提供私有的构造函数
|
SQL 安全 Java
五种单例模式介绍
五种单例模式介绍
91 0
|
安全 Java
单例模式很简单
《基础系列》
117 0
单例模式很简单
|
设计模式 安全 前端开发
关于单例模式,你应该了解这些
关于单例模式,你应该了解这些
关于单例模式,你应该了解这些
|
设计模式 数据库 Python
|
SQL 设计模式 安全
单例模式详解
单例模式详解
240 0
单例模式详解
|
XML 设计模式 安全
单例模式,真不简单
单例模式,真不简单
单例模式,真不简单