ConcurrentSkipListMap 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ConcurrentSkipListMap() |
构造一个新的空映射,根据键的可比自然顺序排序。 |
ConcurrentSkipListMap(IComparator) |
构造一个新的空映射,根据指定的比较器排序。 |
ConcurrentSkipListMap(IDictionary) |
构造一个新映射,其中包含与给定映射相同的映射,根据键的“可比自然顺序”排序。 |
ConcurrentSkipListMap(IntPtr, JniHandleOwnership) |
创建 JNI 对象的托管表示形式时使用的构造函数;由运行时调用。 |
ConcurrentSkipListMap()
构造一个新的空映射,根据键的可比自然顺序排序。
[Android.Runtime.Register(".ctor", "()V", "")]
public ConcurrentSkipListMap();
- 属性
注解
构造一个新的空映射,根据键的可比自然顺序排序。
适用于 . 的 java.util.concurrent.ConcurrentSkipListMap.ConcurrentSkipListMap()
Java 文档
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。
适用于
ConcurrentSkipListMap(IComparator)
构造一个新的空映射,根据指定的比较器排序。
[Android.Runtime.Register(".ctor", "(Ljava/util/Comparator;)V", "")]
public ConcurrentSkipListMap(Java.Util.IComparator? comparator);
[<Android.Runtime.Register(".ctor", "(Ljava/util/Comparator;)V", "")>]
new Java.Util.Concurrent.ConcurrentSkipListMap : Java.Util.IComparator -> Java.Util.Concurrent.ConcurrentSkipListMap
参数
- comparator
- IComparator
将用于订购此映射的比较器。
如果 null
,将使用键的可比较自然排序。
- 属性
注解
构造一个新的空映射,根据指定的比较器排序。
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。
适用于
ConcurrentSkipListMap(IDictionary)
构造一个新映射,其中包含与给定映射相同的映射,根据键的“可比自然顺序”排序。
[Android.Runtime.Register(".ctor", "(Ljava/util/Map;)V", "")]
public ConcurrentSkipListMap(System.Collections.IDictionary? m);
[<Android.Runtime.Register(".ctor", "(Ljava/util/Map;)V", "")>]
new Java.Util.Concurrent.ConcurrentSkipListMap : System.Collections.IDictionary -> Java.Util.Concurrent.ConcurrentSkipListMap
参数
要在此映射中放置其映射的地图
- 属性
注解
构造一个新映射,其中包含与给定映射相同的映射,根据键的“可比自然顺序”排序。
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。
适用于
ConcurrentSkipListMap(IntPtr, JniHandleOwnership)
创建 JNI 对象的托管表示形式时使用的构造函数;由运行时调用。
protected ConcurrentSkipListMap(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Util.Concurrent.ConcurrentSkipListMap : nativeint * Android.Runtime.JniHandleOwnership -> Java.Util.Concurrent.ConcurrentSkipListMap
参数
- transfer
- JniHandleOwnership
指示 JniHandleOwnership如何处理 javaReference
注解
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。