Java Object wait() 方法



描述

Java Object wait(long timeout, int nanos) 方法使当前线程等待,直到另一个线程为此对象调用 notify() 方法或 notifyAll() 方法,或者指定的超时时间已过。

此方法类似于只有一个参数的 wait 方法,但它允许更精细地控制在放弃之前等待通知的时间量。以纳秒为单位测量的实际时间由以下给出:

1000000*timeout+nanos

在所有其他方面,此方法与只有一个参数的 wait(long) 方法执行相同的操作。特别是,wait(0, 0) 与 wait(0) 的含义相同。

当前线程必须拥有此对象的监视器。

声明

以下是java.lang.Object.wait() 方法的声明

public final void wait(long timeout, int nanos)

参数

  • timeout − 以毫秒为单位的最大等待时间。

  • nanos − 额外的纳秒时间,范围为 0-999999。

返回值

此方法不返回值。

异常

  • IllegalArgumentException − 如果 timeout 值为负数,或者 nanos 值不在 0-999999 范围内。

  • IllegalMonitorStateException − 如果当前线程不是该对象的监视器的所有者。

  • InterruptedException − 如果另一个线程中断当前线程。当抛出此异常时,当前线程的中断状态将被清除。

使线程等待特定时间段的示例

以下示例演示了 java.lang.Object.wait() 方法的用法。在这个程序中,我们创建了 ObjectDemo 类,它具有 addElement 和 removeElement 方法。这些方法本质上是同步的,在添加元素时,我们使用 notifyAll() 方法来唤醒所有等待访问对象监视器的线程。在 removeElement() 方法中,我们检查列表是否为空,然后使用 wait() 方法将线程置于给定时间段的等待状态。在主方法中,我们有两个可运行实例,一个用于移除元素,另一个用于添加元素。创建并启动线程后,将调用 addElement() 和 removeElement() 方法。

package com.tutorialspoint;

import java.util.Collections;
import java.util.LinkedList;
import java.util.List;

public class ObjectDemo extends Object {

   private List synchedList;

   public ObjectDemo() {
      // create a new synchronized list to be used
      synchedList = Collections.synchronizedList(new LinkedList());
   }

   // method used to remove an element from the list
   public String removeElement() throws InterruptedException {
      synchronized (synchedList) {

         // while the list is empty, wait up to 10 seconds and 500 nanos
         while (synchedList.isEmpty()) {
            System.out.println("List is empty...");
            synchedList.wait(10000, 500);
            System.out.println("Waiting...");
         }
         String element = (String) synchedList.remove(0);

         return element;
      }
   }

   // method to add an element in the list
   public void addElement(String element) {
      System.out.println("Opening...");
      synchronized (synchedList) {

         // add an element and notify all that an element exists
         synchedList.add(element);
         System.out.println("New Element:'" + element + "'");

         synchedList.notifyAll();
         System.out.println("notifyAll called!");
      }
      System.out.println("Closing...");
   }

   public static void main(String[] args) {
      final ObjectDemo demo = new ObjectDemo();

      Runnable runA = new Runnable() {

         public void run() {
            try {
               String item = demo.removeElement();
               System.out.println("" + item);
            } catch (InterruptedException ix) {
               System.out.println("Interrupted Exception!");
            } catch (Exception x) {
               System.out.println("Exception thrown.");
            }
         }
      };

      Runnable runB = new Runnable() {

         // run adds an element in the list and starts the loop
         public void run() {
            demo.addElement("Hello!");
         }
      };

      try {
         Thread threadA1 = new Thread(runA, "A");
         threadA1.start();

         Thread.sleep(500);

         Thread threadA2 = new Thread(runA, "B");
         threadA2.start();

         Thread.sleep(500);

         Thread threadB = new Thread(runB, "C");
         threadB.start();

         Thread.sleep(1000);

         threadA1.interrupt();
         threadA2.interrupt();
      } catch (InterruptedException x) {
      }
   }
}

输出

让我们编译并运行上面的程序,这将产生以下结果:

List is empty...
List is empty...
Opening...
New Element:'Hello!'
notifyAll called!
Closing...
Waiting...
Waiting...
List is empty...
Hello!
Interrupted Exception!
java_lang_object.htm
广告