-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRobot2.java
51 lines (42 loc) · 1.36 KB
/
Robot2.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
package org.example;
import lombok.SneakyThrows;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.locks.ReentrantLock;
/**
* Другой вариант решения с помощью ReentrantLock
*/
public class Robot2 implements Runnable {
private String currentLeg = "Правая нога";
private final ReentrantLock lock = new ReentrantLock();
private static AtomicLong counter = new AtomicLong(0);
@SneakyThrows
public void run(){
while (true) {
counter.addAndGet(1);
String leg = Thread.currentThread().getName();
if (leg.equals(currentLeg)) {
lock.lock();
System.out.println(leg);
Thread.sleep(1000);
if (currentLeg.equals("Правая нога")) {
currentLeg = "Левая нога";
} else {
currentLeg = "Правая нога";
}
lock.unlock();
// System.out.println(counter);
}
}
}
public static void main(String[] args) {
Robot2 robot2 = new Robot2();
Thread thread1 = new Thread(robot2, "Правая нога");
thread1.start();
Thread thread2 = new Thread(robot2, "Левая нога");
thread2.start();
}
}
/* Примечание
System.out.println(counter);
Включите, если хотите посмотреть сколько циклов пропускается
*/