Skip to content

Commit 0632f3a

Browse files
authoredOct 15, 2024
ThreadSynchronizationExample.java
Create ThreadSynchronization example using Java
1 parent 8e096b3 commit 0632f3a

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
 

‎ThreadSynchronizationExample.java

+29
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)
Please sign in to comment.