ConcurrentHashMap.ForEachKey 方法

定义

重载

ForEachKey(Int64, IConsumer)

为每个键执行给定的操作。

ForEachKey(Int64, IFunction, IConsumer)

对每个键的每个非 null 转换执行给定操作。

ForEachKey(Int64, IConsumer)

为每个键执行给定的操作。

[Android.Runtime.Register("forEachKey", "(JLjava/util/function/Consumer;)V", "GetForEachKey_JLjava_util_function_Consumer_Handler", ApiSince=24)]
public virtual void ForEachKey (long parallelismThreshold, Java.Util.Functions.IConsumer action);
[<Android.Runtime.Register("forEachKey", "(JLjava/util/function/Consumer;)V", "GetForEachKey_JLjava_util_function_Consumer_Handler", ApiSince=24)>]
abstract member ForEachKey : int64 * Java.Util.Functions.IConsumer -> unit
override this.ForEachKey : int64 * Java.Util.Functions.IConsumer -> unit

参数

parallelismThreshold
Int64

此操作并行执行的元素数(估计)

action
IConsumer

操作

属性

注解

为每个键执行给定的操作。

已在 1.8 中添加。

适用于 . 的 java.util.concurrent.ConcurrentHashMap.forEachKey(long, java.util.function.Consumer<? super K>)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于

ForEachKey(Int64, IFunction, IConsumer)

对每个键的每个非 null 转换执行给定操作。

[Android.Runtime.Register("forEachKey", "(JLjava/util/function/Function;Ljava/util/function/Consumer;)V", "GetForEachKey_JLjava_util_function_Function_Ljava_util_function_Consumer_Handler", ApiSince=24)]
[Java.Interop.JavaTypeParameters(new System.String[] { "U" })]
public virtual void ForEachKey (long parallelismThreshold, Java.Util.Functions.IFunction transformer, Java.Util.Functions.IConsumer action);
[<Android.Runtime.Register("forEachKey", "(JLjava/util/function/Function;Ljava/util/function/Consumer;)V", "GetForEachKey_JLjava_util_function_Function_Ljava_util_function_Consumer_Handler", ApiSince=24)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "U" })>]
abstract member ForEachKey : int64 * Java.Util.Functions.IFunction * Java.Util.Functions.IConsumer -> unit
override this.ForEachKey : int64 * Java.Util.Functions.IFunction * Java.Util.Functions.IConsumer -> unit

参数

parallelismThreshold
Int64

此操作并行执行的元素数(估计)

transformer
IFunction

返回元素转换的函数;如果没有转换(在这种情况下未应用操作),则返回 null。

action
IConsumer

操作

属性

注解

对每个键的每个非 null 转换执行给定操作。

已在 1.8 中添加。

适用于 . 的 java.util.concurrent.ConcurrentHashMap.forEachKey(long, java.util.function.Function<? super K, ? extends U>, java.util.function.Consumer<? super U>)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于