-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMultiThreadDemo.java
More file actions
51 lines (43 loc) · 1.27 KB
/
MultiThreadDemo.java
File metadata and controls
51 lines (43 loc) · 1.27 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
45
46
47
48
49
50
51
package chapter11;
//Create multiple Threads
class NewThread3 implements Runnable {
Thread t;
String name;
NewThread3(String threadName) {
name = threadName;
t = new Thread(this, name);
System.out.println("New Thread "+t);
}
public void run() {
try {
for (int n = 5; n > 0; n--) {
System.out.println(name + " : " + n);
Thread.sleep(100);
}
} catch (InterruptedException e) {
System.out.println(name + " Interrupted");
}
System.out.println("Exiting " + name + " thread");
}
}
public class MultiThreadDemo {
public static void main(String[] args) {
NewThread3 nt1 = new NewThread3("One");
NewThread3 nt2 = new NewThread3("Two");
NewThread3 nt3 = new NewThread3("Three");
nt1.t.start();
nt2.t.start();
nt3.t.start();
try {
for(int i =5;i>0;i--){
System.out.println(" name "+i);
//wait for other threads to end.
Thread.sleep(10000);
}
}
catch (InterruptedException e){
System.out.println("Main thread interrupted");
}
System.out.println("Main thread exiting");
}
}