-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEE2_2015_2.java
70 lines (59 loc) · 1.1 KB
/
EE2_2015_2.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
import java.util.concurrent.locks.*;
import java.util.Random;
public class EE2_2015_2{
public static void main(String[] args){
int m = 10;
Rooms rooms = new Rooms(10);
int p = m*2;
Person[] person = new Person[p];
for(int i = 0; i < p; i++){
person[i] = new Person(rooms);
person[i].start();
}
}
}
class Person extends Thread{
Rooms rooms;
public Person(Rooms rooms){
this.rooms = rooms;
}
public void run(){
while(true){
rooms.getIn();
rooms.leave();
}
}
}
class Rooms{
int n;
int m;
int currentRoom;
Random randGen;
public Rooms(int m){
this.n = 0;
this.m = m;
this.currentRoom = -1;
this.randGen = new Random();
}
public synchronized void getIn(){
if(currentRoom == -1){
//select randomRoomToTryGetIn
int r = randGen.nextInt(m);
currentRoom = r;
}
n++;
System.out.println(n+" threads in the room "+currentRoom);
try{
Thread.sleep(randGen.nextInt(300)+100);
}catch(Exception e){
e.printStackTrace();
}
}
public synchronized void leave(){
n--;
if(n == 0){
currentRoom = -1;
System.out.println("All rooms free");
}
}
}