Język

IConcurrentMap.IMap.GetOrDefault(Object, Object) Method

Definition

Returns the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key.

[Android.Runtime.Register("getOrDefault", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;", "GetGetOrDefault_Ljava_lang_Object_Ljava_lang_Object_Handler:Java.Util.Concurrent.IConcurrentMap, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)]
override sealed Java.Lang.Object? IMap.GetOrDefault(Java.Lang.Object? key, Java.Lang.Object? defaultValue);
[<Android.Runtime.Register("getOrDefault", "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;", "GetGetOrDefault_Ljava_lang_Object_Ljava_lang_Object_Handler:Java.Util.Concurrent.IConcurrentMap, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=24)>]
abstract member Java.Util.IMap.GetOrDefault : Java.Lang.Object * Java.Lang.Object -> Java.Lang.Object
override this.Java.Util.IMap.GetOrDefault : Java.Lang.Object * Java.Lang.Object -> Java.Lang.Object

Parameters

key
Object

the key whose associated value is to be returned

defaultValue
Object

the default mapping of the key

Returns

the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key

Implements

Attributes

Remarks

Returns the value to which the specified key is mapped, or defaultValue if this map contains no mapping for the key.

Added in 1.8.

Java reference for java.util.concurrent.ConcurrentMap.getOrDefault.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to