forked from disha2sinha/Object-Oriented-Programming-in-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiThreading6.java
57 lines (53 loc) · 1.5 KB
/
MultiThreading6.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
package Multithreading;
class NewThread implements Runnable{
String name;
Thread t;
NewThread(String thdname)
{
name=thdname;
t=new Thread(this,name);
System.out.println("New Thread:"+t);
t.start();
}
public void run()
{
try{
for(int i=5;i>0;i--)
{
System.out.println(name+":"+i);
Thread.sleep(500);
}
}
catch(InterruptedException e)
{
System.out.println(name + " Interrupted");
}
System.out.println(name+" exiting");
}
}
/**
* MultiThreading6
*/
class MultiThreading6 {
public static void main(String[] args) {
NewThread ob1=new NewThread("Thread One");
NewThread ob2=new NewThread("Thread Two");
NewThread ob3=new NewThread("Thread Three");
System.out.println("Ob1 is Alive:"+ob1.t.isAlive());
System.out.println("Ob2 is Alive:"+ob2.t.isAlive());
System.out.println("Ob3 is Alive:"+ob3.t.isAlive());
try
{
ob1.t.join();
ob2.t.join();
ob3.t.join();
}
catch(InterruptedException e)
{
System.out.println("Main Interrupted");
System.out.println("Ob1 is Alive:" + ob1.t.isAlive());
System.out.println("Ob2 is Alive:" + ob2.t.isAlive());
System.out.println("Ob3 is Alive:" + ob3.t.isAlive());
}
}
}