We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e096b3 commit 0632f3aCopy full SHA for 0632f3a
ThreadSynchronizationExample.java
@@ -0,0 +1,29 @@
1
+import java.util.concurrent.atomic.AtomicInteger;
2
+
3
+public class ThreadSynchronizationExample {
4
5
+ private static final int NUM_THREADS = 10;
6
7
+ public static void main(String[] args) {
8
+ AtomicInteger counter = new AtomicInteger(0);
9
10
+ for (int i = 0; i < NUM_THREADS; i++) {
11
+ Thread thread = new Thread(() -> {
12
+ for (int j = 0; j < 1000; j++) {
13
+ counter.incrementAndGet();
14
+ }
15
+ });
16
+ thread.start();
17
18
19
+ try {
20
+ for (Thread thread : Thread.getAllStackTraces().keySet()) {
21
+ thread.join();
22
23
+ } catch (InterruptedException e) {
24
+ e.printStackTrace();
25
26
27
+ System.out.println("Final counter value: " + counter.get());
28
29
+}
0 commit comments