-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathThreadJoin.java
More file actions
38 lines (20 loc) · 839 Bytes
/
ThreadJoin.java
File metadata and controls
38 lines (20 loc) · 839 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
public class ThreadJoin extends Thread{
public void run () {
Thread t = Thread.currentThread();
System.out.println("Started Executing " +t.getName());
for(int i=0; i <10; i++) {
System.out.println(t.getName() + i);
}
System.out.println("Finished Executing " +t.getName());
}
public static void main(String[] args) throws Exception{
Thread t = new Thread (new ThreadJoin(), "New Thread");
t.start();
System.out.println("Started executing main thread");
t.join();
for(int i =0; i<10; i++) {
System.out.println(Thread.currentThread().getName() +i);
}
System.out.println("Finished Executing " +Thread.currentThread().getName());
}
}