首页 > 其他 > 详细

完美的单例模式

时间:2021-06-19 23:13:26      阅读:34      评论:0      收藏:0      [点我收藏+]

在多线程下懒加载保证只实例化一次。

第一种双重判断:

public class SingletonTest {
private static SingletonTest INSTANCE;

private SingletonTest() {
}

public static SingletonTest getInstance() {
if (INSTANCE == null) {
synchronized (SingletonTest.class) {
if (INSTANCE == null) {
INSTANCE = new SingletonTest();
}
}
}
return INSTANCE;
}

public static void main(String[] args) {
for (int i = 0; i < 100; i++) {
new Thread(() -> {
System.out.println(SingletonTest.getInstance().hashCode());
}).start();
}
}
}

第二种内部类,JVM会保证内部类只加载一次:

public class SingletonTest {

private SingletonTest() {
}

private static class SingletonTestInnerClass {
private static final SingletonTest INSTANCE = new SingletonTest();
}

public static SingletonTest getInstance() {
return SingletonTestInnerClass.INSTANCE;
}

public static void main(String[] args) {
for (int i = 0; i < 100; i++) {
new Thread(() -> {
System.out.println(SingletonTest.getInstance().hashCode());
}).start();
}
}
}

第三种使用枚举:

public enum SingletonTestEnum {
INSTANCE;

public void test() {
}

public static void main(String[] args) {
for (int i = 0; i < 100; i++) {
new Thread(() -> {
System.out.println(SingletonTestEnum.INSTANCE.hashCode());
}).start();
}
}
}

 

注:这些是自己学习的笔记,如有不准确,欢迎指出!

完美的单例模式

原文:https://www.cnblogs.com/seaming/p/14905079.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!