-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWaitWithoutLock.java
More file actions
78 lines (72 loc) · 1.64 KB
/
WaitWithoutLock.java
File metadata and controls
78 lines (72 loc) · 1.64 KB
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
/**
* Created by rism on 8/7/14.
*/
public class WaitWithoutLock
{
public static PrintLog pL = new PrintLog();
public static void main(String[] args)
{
client c1 = new client("Thread1");
client c2 = new client("Thread2");
client c3 = new client("Thread3");
c1.start();
c2.start();
c3.start();
}
}
class PrintLog
{
public void printLog(String name)
{
System.out.println(name + ":\tTrying to Print");
}
}
class client implements Runnable
{
private String threadName;
private Thread t;
public client(String name)
{
this.threadName = name;
}
public void run()
{
try
{
t.wait();
}
catch (InterruptedException ie)
{
System.out.println(this.threadName + " Interrupted");
}
WaitWithoutLock.pL.printLog(threadName);
}
public void start()
{
if(t == null)
{
t = new Thread(this, threadName);
t.start();
}
}
// public void run()
// {
// synchronized (t)
// {
// try
// {
// if(t == null)
// {
// t = new Thread(this, threadName);
// t.start();
// }
// t.wait(10);
// }
// catch (InterruptedException ie)
// {
// System.out.println(this.threadName + " Interrupted");
// }
// }
// WaitWithoutLock.pL.printLog(threadName);
// }
}