다음을 통해 공유


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 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상