다음을 통해 공유


AtomicInteger.GetAndAccumulate(Int32, IIntBinaryOperator) 메서드

정의

지정된 함수를 현재 및 지정된 값에 VarHandle#compareAndSet적용하여 이전 값을 반환한 결과로 현재 값을 원자성으로 업데이트합니다(지정된 메모리 효과 포함).

[Android.Runtime.Register("getAndAccumulate", "(ILjava/util/function/IntBinaryOperator;)I", "", ApiSince=24)]
public int GetAndAccumulate (int x, Java.Util.Functions.IIntBinaryOperator? accumulatorFunction);
[<Android.Runtime.Register("getAndAccumulate", "(ILjava/util/function/IntBinaryOperator;)I", "", ApiSince=24)>]
member this.GetAndAccumulate : int * Java.Util.Functions.IIntBinaryOperator -> int

매개 변수

x
Int32

업데이트 값

accumulatorFunction
IIntBinaryOperator

두 인수의 부작용 없는 함수

반환

이전 값

특성

설명

지정된 함수를 현재 및 지정된 값에 VarHandle#compareAndSet적용하여 이전 값을 반환한 결과로 현재 값을 원자성으로 업데이트합니다(지정된 메모리 효과 포함). 스레드 간의 경합으로 인해 업데이트 시도가 실패할 때 다시 적용될 수 있으므로 함수는 부작용이 없어야 합니다. 함수는 현재 값을 첫 번째 인수로, 지정된 업데이트를 두 번째 인수로 적용합니다.

1.8에 추가되었습니다.

에 대한 java.util.concurrent.atomic.AtomicInteger.getAndAccumulate(int, java.util.function.IntBinaryOperator)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상