-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVolatileKeyword.java
102 lines (83 loc) · 3.31 KB
/
VolatileKeyword.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
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
96
97
98
99
100
101
102
package data_sharing_between_threads;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
public class VolatileKeyword {
private final static int noOfThreads = 2;
public static void main(String[] args) throws InterruptedException {
MissileLauncher launcher = new MissileLauncher();
Thread countThread = new Thread(launcher::countDown);
Thread launcherThread = new Thread(launcher::launch);
long start = System.currentTimeMillis();
countThread.start();
launcherThread.start();
countThread.join();
launcherThread.join();
long end = System.currentTimeMillis();
System.out.println(end - start);
VolatileData volatileData = new VolatileData(); //object of VolatileData class
Thread[] threads = new Thread[noOfThreads]; //creating Thread array
for (int i = 0; i < noOfThreads; ++i)
threads[i] = new VolatileThread(volatileData);
for (int i = 0; i < noOfThreads; ++i)
threads[i].start(); //starts all reader threads
for (int i = 0; i < noOfThreads; ++i)
threads[i].join(); //wait for all threads
}
public static class MissileLauncher {
private final Lock lock = new ReentrantLock();
private int count = 10000;
private boolean flag = false;
public void countDown() { // write to count => non-atomic ops and requires a lock
lock.lock();
try {
while (count > 0) {
System.out.println("CountDown: " + count);
count--;
try {
Thread.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
break;
}
}
} finally {
lock.unlock();
flag = true;
}
}
public void launch() { // launch the rocket after the count-down
while (!flag) { // here, don't need a volatile keyword.
try {
Thread.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println("Launching now!");
}
}
public static class VolatileData {
private volatile int counter = 0; // here, also don't need the volatile keyword
public int getCounter() {
return counter;
}
public void increaseCounter() {
++counter; //increases the value of counter by 1
}
}
public static class VolatileThread extends Thread {
private final VolatileData data;
public VolatileThread(VolatileData data) {
this.data = data;
}
@Override
public void run() {
int oldValue = data.getCounter();
System.out.println("[Thread " + Thread.currentThread().getId() + "]: Old value = " + oldValue);
data.increaseCounter();
int newValue = data.getCounter();
System.out.println("[Thread " + Thread.currentThread().getId() + "]: New value = " + newValue);
}
}
}