forked from sat5297/hacktober-coding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreadDemo.java
More file actions
52 lines (45 loc) · 896 Bytes
/
ThreadDemo.java
File metadata and controls
52 lines (45 loc) · 896 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
41
42
43
44
45
46
47
48
49
50
51
52
package pgrms;
class NewThread implements Runnable
{
Thread t;
NewThread()
{
t = new Thread(this,"Demo Thread");
System.out.println("Child thred:"+t);
t.start();
}
@Override
public void run() {
// TODO Auto-generated method stub
try
{
for(int i=5;i>0;i--)
{
System.out.println("Chiild Thread:"+i);
Thread.sleep(500);
}
} catch(InterruptedException e)
{
System.out.println("child Interrupted");
}
System.out.println("Exiting child thread");
}
}
public class ThreadDemo {
public static void main(String args[])
{
new NewThread();
try
{
for(int i=5;i>0;i--)
{
System.out.println("main thread:"+i);
Thread.sleep(1000);
}
} catch (InterruptedException e)
{
System.out.println("Main thread interrupted");
}
System.out.println("main thread exiting");
}
}