이 글에서는 Java 스레드의 informAll wake-up 작업을 주로 소개합니다. 매우 훌륭하고 참고할만한 가치가 있습니다.
참고:
Java의 NotifyAll과 알림은 모두 스레드를 깨우는 작업입니다. 알림은 대기 풀에 있는 특정 스레드만 깨우지만 어느 스레드인지는 확실하지 않습니다. 지정된 객체 내부의 모든 스레드는 지정된 객체가 성공적으로 깨어나면 깨우기 작업을 수행합니다. 즉시 스레드의 리소스 경쟁에 참여하게 됩니다.
예:
package TestThread.ThreadSynchronized; public class TestWaitAll { public static void main(String[] args) { Test1 test1 = new Test1(); Thread t = new Thread(test1, "线程1"); Thread t1 = new Thread(test1, "线程2"); Thread t2 = new Thread(test1, "线程3"); Test2 test2 = new Test2(test1, "唤醒线程"); t.start(); t1.start(); t2.start(); try { Thread.sleep(2000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } test2.start(); } } class Test1 implements Runnable { public void run() { synchronized (this) { try { this.wait(); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println(Thread.currentThread().getName() + "当前没有被执行到!"); } } } class Test2 extends Thread { private Test1 test1; String name; public Test2(Test1 test1, String name) { super(name); this.name = name; this.test1 = test1; } public void run() { synchronized (test1) { test1.notifyAll();// 针对当前对象执行唤醒所有线程的操作 System.out.println(Thread.currentThread().getName() + ":唤醒线程执行成功!"); } } }
실행 결과는 다음과 같습니다.
위 내용은 Java 스레드에서 informAll을 깨우는 작업 코드에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!