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