forked from damaohongtu/JavaInterview
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCountDownLatchExample.java
More file actions
95 lines (78 loc) · 3.21 KB
/
CountDownLatchExample.java
File metadata and controls
95 lines (78 loc) · 3.21 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package JavaBasic;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
/**
* @Classname CountDownLatchExample
* @Description TODO
* @Date 19-7-7 上午8:49
* @Created by mao<tianmao818@qq.com>
*/
public class CountDownLatchExample {
// 请求的数量
private static final int threadCount = 5500;
public static void main(String[] args) throws InterruptedException {
// 创建一个具有固定线程数量的线程池对象(如果这里线程池的线程数量给太少的话你会发现执行的很慢)
ExecutorService threadPool = Executors.newFixedThreadPool(5500);
long startTime1 = System.currentTimeMillis();
final CountDownLatch countDownLatch = new CountDownLatch(threadCount);
for (int i = 0; i < threadCount; i++) {
final int threadnum = i;
threadPool.execute(() -> {// Lambda 表达式的运用
try {
test("test1",threadnum);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
countDownLatch.countDown();// 表示一个请求已经被完成
}
});
}
countDownLatch.await();
long endTime1 = System.currentTimeMillis();
System.out.println("finish:"+(endTime1-startTime1));
threadPool.shutdown();
// 不使用线程池
long startTime2=System.currentTimeMillis();
final CountDownLatch countDownLatch2 = new CountDownLatch(threadCount);
for (int i = 0; i < threadCount; i++) {
final int threadnum = i;
// new Thread(){
// public void run(){
// try {
// test("test2",threadnum);
// } catch (InterruptedException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// } finally {
// countDownLatch2.countDown();
// }
// }
// }.start();
new Thread(
new Runnable() {
@Override
public void run() {
try {
test("test2",threadnum);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
countDownLatch2.countDown();
}
}
}
).start();
}
countDownLatch2.await();
long endTime2=System.currentTimeMillis();
System.out.println("finish:"+(endTime2-startTime2));
}
public static void test(String s,int threadnum) throws InterruptedException {
Thread.sleep(10000);// 模拟请求的耗时操作
System.out.println("threadnum:" + threadnum+","+s);
Thread.sleep(10000);// 模拟请求的耗时操作
}
}