yield() 메서드는 Thread 클래스의 static 메서드로, 현재 실행 중인 스레드를 중지하고 동일한 우선순위의 다른 대기 스레드에 기회를 줄 수 있습니다. 대기 스레드가 없거나 모든 대기 스레드가 낮은 우선순위인 경우 동일한 스레드가 계속 실행됩니다. yield() 메서드의 장점은 대기 중인 다른 스레드를 실행할 기회가 있으므로 현재 스레드가 실행하고 프로세서를 다른 스레드에 할당하는 데 더 많은 시간이 필요한 경우입니다.
public static void yield()
class MyThread extends Thread { public void run() { for (int i = 0; i < 5; ++i) { Thread.yield(); // By calling this method, MyThread stop its execution and giving a chance to a main thread System.out.println("Thread started:" + Thread.currentThread().getName()); } System.out.println("Thread ended:" + Thread.currentThread().getName()); } } public class YieldMethodTest { public static void main(String[] args) { MyThread thread = new MyThread(); <strong> </strong>thread.start();<strong> </strong> for (int i = 0; i < 5; ++i) { System.out.println("Thread started:" + Thread.currentThread().getName()); } System.out.println("Thread ended:" + Thread.currentThread().getName()); } }
Thread started:main Thread started:Thread-0 Thread started:main Thread started:Thread-0 Thread started:main Thread started:Thread-0 Thread started:main Thread started:Thread-0 Thread started:main Thread started:Thread-0 Thread ended:main Thread ended:Thread-0
위 내용은 Java에서 Yield() 메소드의 중요성은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!