JavaTM 2 Platform
Standard Ed. 6

java.util.concurrent.atomic
類別 AtomicReference<V>

java.lang.Object
  繼承者 java.util.concurrent.atomic.AtomicReference<V>
型別參數:
V - 此參考所參考的物件型別。
所有已實作的介面:
Serializable

public class AtomicReference<V>
extends Object
implements Serializable

可以用原子方式更新的物件參考。有關原子變數屬性的描述,請參閱 java.util.concurrent.atomic 套件規範。

從以下版本開始:
1.5
另請參見:
序列化表格

建構子摘要
AtomicReference()
          使用 null 初始值創建新的 AtomicReference。
AtomicReference(V initialValue)
          使用給定的初始值創建新的 AtomicReference。
 
方法摘要
 boolean compareAndSet(V expect, V update)
          如果當前值 == 預期值,則以原子方式將該值設置為給定的更新值。
 V get()
          獲取當前值。
 V getAndSet(V newValue)
          以原子方式設置為給定值,並返回舊值。
 void lazySet(V newValue)
          最終設置為給定值。
 void set(V newValue)
          設置為給定值。
 String toString()
          返回當前值的字元串表示形式。
 boolean weakCompareAndSet(V expect, V update)
          如果當前值 == 預期值,則以原子方式將該值設置為給定的更新值。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

建構子詳細資訊

AtomicReference

public AtomicReference(V initialValue)
使用給定的初始值創建新的 AtomicReference。

參數:
initialValue - 初始值

AtomicReference

public AtomicReference()
使用 null 初始值創建新的 AtomicReference。

方法詳細資訊

get

public final V get()
獲取當前值。

返回:
當前值

set

public final void set(V newValue)
設置為給定值。

參數:
newValue - 新值

lazySet

public final void lazySet(V newValue)
最終設置為給定值。

參數:
newValue - 新值
從以下版本開始:
1.6

compareAndSet

public final boolean compareAndSet(V expect,
                                   V update)
如果當前值 == 預期值,則以原子方式將該值設置為給定的更新值。

參數:
expect - 預期值
update - 新值
返回:
如果成功,則返回 true。返回 false 指示實際值與預期值不相等。

weakCompareAndSet

public final boolean weakCompareAndSet(V expect,
                                       V update)
如果當前值 == 預期值,則以原子方式將該值設置為給定的更新值。

可能意外失敗並且不提供排序保證,因此幾乎只是 compareAndSet 的適當替代方法。

參數:
expect - 預期值
update - 新值
返回:
如果成功,則返回 true。

getAndSet

public final V getAndSet(V newValue)
以原子方式設置為給定值,並返回舊值。

參數:
newValue - 新值
返回:
以前的值

toString

public String toString()
返回當前值的字元串表示形式。

覆寫:
類別 Object 中的 toString
返回:
當前值的字元串表示形式。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only