-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCreateThread.java
More file actions
37 lines (35 loc) · 989 Bytes
/
Copy pathCreateThread.java
File metadata and controls
37 lines (35 loc) · 989 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
class NewThread implements Runnable{
Thread t;
NewThread(){
t=new Thread(this,"NewThread");
System.out.println("child thread "+t);
t.start();
}
public void run(){
try{
for(int i=5;i>0;i--){
System.out.println(i);
Thread.sleep(1000);
}
}
catch(Exception e){
System.out.println("child thread Interrupted");
}
System.out.println("child thread exiting");
}
}
public class CreateThread {
public static void main(String[] args) {
new NewThread();
try{
for(int i=5;i>0;i--){
System.out.println(i);
Thread.sleep(500);
}
}
catch(Exception e){
System.out.println("Main thread Interrupted");
}
System.out.println("Main thread exiting");
}
}