-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmultithreadingexample2.java
More file actions
42 lines (39 loc) · 1.14 KB
/
multithreadingexample2.java
File metadata and controls
42 lines (39 loc) · 1.14 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
// 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);
t.start(); // Start the thread
}
@Override
public void run() {
try {
for(int i = 5; i > 0; i--) {
System.out.println("child Thread: " + i);
Thread.sleep(1000);
}
} catch (InterruptedException e) {
System.out.println("child thread interrupted.");
}
System.out.println("child thread exiting.");
}
}
}
// This is the entry point for the second thread.
}
class multithreadingexample2 {
public static void main(String args[ ] ) {
new NewThread(); // create a new thread
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.");
}
}