-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMythread5.java
More file actions
40 lines (31 loc) · 800 Bytes
/
Copy pathMythread5.java
File metadata and controls
40 lines (31 loc) · 800 Bytes
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
import java.lang.*;
class Demo extends Thread
{
public void run() //3 Running state
{
for(int i=0;i<10;i++)
{
System.out.println("Value of i : "+i );
try
{
Thread.sleep(1000);
}
catch(Exception obj)
{}
}
}
}
class Mythread5
{
public static void main(String arg[]) throws Exception
{
Demo obj1=new Demo(); //1 New state
Thread t1=new Thread(obj1,"First");
Demo obj2=new Demo(); //1 New state
Thread t2=new Thread(obj1,"Second");
t1.start() ; //2 Runnable state
t1.join(); //dudh aalyavr chaha......
t2.start() ; //2 Runnable state
// 4 Dead state
}
}