我是靠谱客的博主 仁爱板栗,这篇文章主要介绍java单例模式多线程测试,现在分享给大家,希望可以做个参考。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.github.pig.auth; import java.util.ArrayList; import java.util.List; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; public class Test { private static class Inner { private static Test t = new Test(); } Test() { System.out.println(this.hashCode()); } private static Test t; public static Test getSignle() { try { latch.await(); } catch (InterruptedException e) { e.printStackTrace(); } if(t == null) { synchronized (Test.class) { if (t == null) { t = new Test(); } } } return t; } static CountDownLatch latch = new CountDownLatch(100); public static void main(String[] args) { for (int i = 0; i < 100; i++) { Thread th = new Thread(Test::getSignle); th.start(); latch.countDown(); } } }

运行结果打印一个就对了


上面例子是最好的单例模式两种,都是懒加载,只会创建一次。

双重锁 ,内部类

最后

以上就是仁爱板栗最近收集整理的关于java单例模式多线程测试的全部内容,更多相关java单例模式多线程测试内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(118)

评论列表共有 0 条评论

立即
投稿
返回
顶部