-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreadJoinPrintValues.java
More file actions
39 lines (32 loc) · 793 Bytes
/
ThreadJoinPrintValues.java
File metadata and controls
39 lines (32 loc) · 793 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
38
39
package mthread;
public class ThreadJoinPrintValues extends Thread {
public void run() {
for (int i = 1; i <= 5; i++) {
try {
Thread.sleep(500);
} catch (Exception e) {
e.printStackTrace();
}
System.out.println(i);
}
}
public static void main(String args[]) {
ThreadJoinPrintValues t1 = new ThreadJoinPrintValues();
ThreadJoinPrintValues t2 = new ThreadJoinPrintValues();
ThreadJoinPrintValues t3 = new ThreadJoinPrintValues();
t1.start();
try {
t1.join(); // t1.join( 1500 );start t2 after 1500 sec
} catch (Exception e) {
e.printStackTrace();
}
t2.start();
t3.start();
Thread t = new Thread() {
public void run() {
System.out.println("Hello from thread.");
}
};
t.start();
}
}