-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSleepWakeup.java
84 lines (72 loc) · 1.92 KB
/
SleepWakeup.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
import java.util.*;
import java.util.LinkedList;
class SW
{
private LinkedList<Integer> list=new LinkedList<Integer>();
private final int LIMIT =10;
private Object lock=new Object();
public void Produce() throws InterruptedException
{
int value=0;
while(true){
synchronized(lock)
{
while(list.size()==LIMIT){
lock.wait();
}
list.add(value++);
lock.notify();
}
}
}
public void Consume() throws InterruptedException
{
Random random=new Random();
while(true){
synchronized(lock)
{
while(list.size()==0){
lock.wait();
}
System.out.println("List size : "+list.size());
int item=list.removeFirst();
System.out.println("Value is : "+item);
System.out.println("List size : "+list.size());
lock.notify();
}
Thread.sleep(random.nextInt(1000));
}
}
}
class SleepWakeup
{
public static void main(String args[]){
final SW sw=new SW();
Thread t1=new Thread(new Runnable(){
public void run(){
try{
sw.Consume();
}catch(InterruptedException e){
e.printStackTrace();
}
}
});
Thread t2=new Thread(new Runnable(){
public void run(){
try{
sw.Produce();
}catch(InterruptedException e){
e.printStackTrace();
}
}
});
t1.start();
t2.start();
try{
t1.join();
t2.join();
}catch(InterruptedException e){
e.printStackTrace();
}
}
}