BAEL-2187 - Adding files for the tutorial related to Java Yield (#5169)
This commit is contained in:
parent
332061d8bd
commit
88601730d0
|
@ -0,0 +1,17 @@
|
|||
package com.baeldung.concurrent.yield;
|
||||
|
||||
public class ThreadYield {
|
||||
public static void main(String[] args) {
|
||||
Runnable r = () -> {
|
||||
int counter = 0;
|
||||
while (counter < 2) {
|
||||
System.out.println(Thread.currentThread()
|
||||
.getName());
|
||||
counter++;
|
||||
Thread.yield();
|
||||
}
|
||||
};
|
||||
new Thread(r).start();
|
||||
new Thread(r).start();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue