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
廣告
© . All rights reserved.