-
Notifications
You must be signed in to change notification settings - Fork 1
/
SyncThread3.java
48 lines (43 loc) · 1.26 KB
/
SyncThread3.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
/**
* Синхронизация потоков
*/
public class SyncThread3 {
private static Value x = new Value();
public static void main(String[] args) throws InterruptedException {
while (true) {
final int X = 10000000;
x.x = 0;
Thread incVar = new Thread(() -> {
for (int i = 0; i < X; i++) {
x.inc();
// 1. Загрузить из памяти
// 2. Поменять значение
// 3. Записать в память
}
});
incVar.start();
Thread decVar = new Thread(() -> {
for (int i = 0; i < X; i++) {
x.dec();
}
});
decVar.start();
// Подождём оба потока
incVar.join();
decVar.join();
// Какое же значение переменной?
System.out.println("x = " + x.x);
}
}
private static class Value {
int x = 0;
synchronized void inc() {
x++;
}
void dec() {
synchronized (this) {
x--;
}
}
}
}