wait()
方法本身不会导致异常,但它可能会抛出 InterruptedException
。当你调用一个对象的 wait()
方法时,当前线程会释放该对象的锁并进入等待状态,直到其他线程调用该对象的 notify()
或 notifyAll()
方法唤醒它。在这个过程中,如果其他线程中断了当前等待的线程,那么 wait()
方法就会抛出 InterruptedException
。
以下是一个简单的示例:
public class WaitExample { public static void main(String[] args) { final Object lock = new Object(); Thread thread = new Thread(() -> { try { System.out.println("Thread is waiting..."); lock.wait(); // 调用 wait() 方法,当前线程会释放锁并进入等待状态 System.out.println("Thread is awake!"); } catch (InterruptedException e) { System.out.println("Thread was interrupted!"); } }); thread.start(); try { Thread.sleep(2000); // 让线程等待一段时间 } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("Notifying the thread..."); lock.notify(); // 唤醒等待的线程 } }
在这个示例中,wait()
方法不会导致异常,但如果其他线程中断了等待的线程,wait()
方法会抛出 InterruptedException
。