-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExtendThread.java
More file actions
32 lines (32 loc) · 955 Bytes
/
ExtendThread.java
File metadata and controls
32 lines (32 loc) · 955 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
public class ExtendThread {
public static void main(String arg[]){
new NewThreadTwo();
try{
for(int i = 5; i > 0; i--){
System.out.println("Main Thread:" + i);
Thread.sleep(1000);
}
}catch (InterruptedException e){
System.out.println("Main interrupted.");
}
System.out.println("Exiting main");
}
}
class NewThreadTwo extends Thread {
NewThreadTwo(){
super("Demo Thread");
System.out.println("Child Thread:" + this);
start();
}
public void run(){
try{
for(int i = 5; i > 0; i--){
System.out.println("Child Thread:" + i);
Thread.sleep(500);
}
}catch (InterruptedException e){
System.out.println("Child interrupted.");
}
System.out.println("Exiting child thread.");
}
}