IConcurrentMap.PutIfAbsent(Object, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
如果指定的索引鍵尚未與值相關聯,請將它與指定的值產生關聯。
[Android.Runtime.Register("putIfAbsent", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;", "GetPutIfAbsent_Ljava_lang_Object_Ljava_lang_Object_Handler:Java.Util.Concurrent.IConcurrentMapInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Lang.Object? PutIfAbsent (Java.Lang.Object? key, Java.Lang.Object? value);
[<Android.Runtime.Register("putIfAbsent", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;", "GetPutIfAbsent_Ljava_lang_Object_Ljava_lang_Object_Handler:Java.Util.Concurrent.IConcurrentMapInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member PutIfAbsent : Java.Lang.Object * Java.Lang.Object -> Java.Lang.Object
參數
- key
- Object
要與指定值相關聯的索引鍵
- value
- Object
要與指定索引鍵相關聯的值
傳回
與指定索引鍵相關聯的上一個值,如果 null
索引鍵沒有對應,則為 。
(如果實作支援 Null 值,則傳 null
回也可以指出先前與索引鍵相關聯的 null
對應。
實作
- 屬性
備註
如果指定的索引鍵尚未與值相關聯,請將它與指定的值產生關聯。 這相當於這個 map
的 :
{@code
if (!map.containsKey(key))
return map.put(key, value);
else
return map.get(key);}
不同之處在於動作會以不可部分完成的方式執行。
的 java.util.concurrent.ConcurrentMap.putIfAbsent(K, V)
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。