-
Notifications
You must be signed in to change notification settings - Fork 1
/
SyncronizedTest.java
85 lines (69 loc) · 2.35 KB
/
SyncronizedTest.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
import org.junit.Assert;
import org.junit.Test;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
/**
*
*/
public class SyncronizedTest extends Assert {
public static final int ITERATIONS = 10000;
final Random random = new Random();
/**
* Демонстрация ошибок при отсутсвии синхронизации
*
* @throws InterruptedException
*/
@Test
public void testSyncronized() throws InterruptedException {
final MyClass myClass = new MyClass();
List<Thread> threads = new ArrayList<>();
// Страртуем 10000 потоков на increment
for (int i = 0; i < ITERATIONS; ++i) {
Thread t = new Thread(() -> {
// Поток пусть поспит случайное время
waitRandomTime();
myClass.incrementAndGetCounter();
});
t.start();
threads.add(t);
}
// Подождём теперь завершения всех потоков
for (Thread t : threads)
t.join();
threads.clear();
System.out.println("Без syncronized (< 10000): " + myClass.counter);
// Страртуем 10000 потоков на increment
for (int i = 0; i < ITERATIONS; ++i) {
Thread t = new Thread(() -> {
waitRandomTime();
myClass.incrementAndGetCounterSync();
});
t.start();
threads.add(t);
}
// Снова подождём теперь завершения всех потоков
for (Thread t : threads)
t.join();
threads.clear();
System.out.println("С syncronized всё точно: " + myClass.syncCounter);
assertEquals(ITERATIONS, myClass.syncCounter);
}
private void waitRandomTime() {
try {
Thread.sleep(random.nextInt(10));
} catch (InterruptedException e) {
System.out.println("Глотаем исключение :)");
}
}
static class MyClass {
int counter = 0;
int syncCounter = 0;
int incrementAndGetCounter() {
return ++counter;
}
synchronized int incrementAndGetCounterSync() {
return ++syncCounter;
}
}
}