Java.util.concurrent.atomic.AtomicLongArray.decrementAndGet()是Java中的一種內置方法,它在給定索引上原子減少一個元素。此方法將索引值和要添加的值作為參數,並在該索引處返回更新後的值。
用法:
public final long decrementAndGet(int i)
參數:該函數接受單個參數i,該參數是執行一個操作減1的索引。
返回值:函數返回更新後的值,該值為long類型。
以下示例程序旨在說明上述方法:
示例1:
// Java program that demonstrates
// the compareAndSet() function
import java.util.concurrent.atomic.AtomicLongArray;
public class GFG {
public static void main(String args[])
{
// Initializing an array
long a[] = { 1, 2, 3, 4, 5 };
// Initializing an AtomicLongArray with array a
AtomicLongArray arr = new AtomicLongArray(a);
// Displaying the AtomicLongArray
System.out.println("The array : " + arr);
// Index where operation is performed
int idx = 3;
// Updating the value at
// idx applying decrementAndGet
arr.decrementAndGet(idx);
// Displaying the AtomicLongArray
System.out.println("The array after update : "
+ arr);
}
}
輸出:
The array : [1, 2, 3, 4, 5] The array after update : [1, 2, 3, 3, 5]
示例2:
// Java program that demonstrates
// the compareAndSet() function
import java.util.concurrent.atomic.AtomicLongArray;
public class GFG {
public static void main(String args[])
{
// Initializing an array
long a[] = { 1, 2, 3, 4, 5 };
// Initializing an AtomicLongArray with array a
AtomicLongArray arr = new AtomicLongArray(a);
// Displaying the AtomicLongArray
System.out.println("The array : " + arr);
// Index where operation is performed
int idx = 0;
// Updating the value at
// idx applying decrementAndGet
arr.decrementAndGet(idx);
// Displaying the AtomicLongArray
System.out.println("The array after update : "
+ arr);
}
}
輸出:
The array : [1, 2, 3, 4, 5] The array after update : [0, 2, 3, 4, 5]
相關用法
- Java AtomicIntegerArray decrementAndGet()用法及代碼示例
- Java AtomicInteger decrementAndGet()用法及代碼示例
- Java AtomicLong decrementAndGet()用法及代碼示例
- Java AtomicLongArray set()用法及代碼示例
- Java AtomicLongArray get()用法及代碼示例
- Java AtomicLongArray getAndUpdate()用法及代碼示例
- Java AtomicLongArray addAndGet()用法及代碼示例
- Java AtomicLongArray toString()用法及代碼示例
- Java AtomicLongArray compareAndSet()用法及代碼示例
- Java AtomicLongArray accumulateAndGet()用法及代碼示例
- Java AtomicLongArray getAndSet()用法及代碼示例
- Java AtomicLongArray getAndAccumulate()用法及代碼示例
- Java AtomicLongArray incrementAndGet()用法及代碼示例
- Java AtomicLongArray length()用法及代碼示例
- Java AtomicLongArray getAndIncrement()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 AtomicLongArray decrementAndGet() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。