-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathThreadYield.java
More file actions
40 lines (20 loc) · 845 Bytes
/
ThreadYield.java
File metadata and controls
40 lines (20 loc) · 845 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
40
public class ThreadYield 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 ThreadYield(),"New Thread");
t.start();
System.out.println("Started executing main thread");
t.yield();
for(int i= 0; i<10; i++) {
System.out.println(Thread.currentThread().getName() +i);
}
System.out.println("Finished Executing " +Thread.currentThread().getName());
}
}