-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathThreadDemo.java
More file actions
44 lines (37 loc) · 1.12 KB
/
ThreadDemo.java
File metadata and controls
44 lines (37 loc) · 1.12 KB
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
package chapter11;
//Create a second Thread
class NewThread implements Runnable {
Thread t;
NewThread() {
//Create a new second thread
t = new Thread(this, "demo thread");
System.out.println("Child Thread "+t);
}
//This is entry point for the second thread
public void run() {
try {
for (int n = 5; n > 0; n--) {
System.out.println("Child Thread "+n);
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) {
NewThread nt = new NewThread(); //Create a new thread
nt.t.start();
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");
}
}