VOOZH about

URL: https://www.geeksforgeeks.org/java/atomicintegerarray-lazyset-method-in-java-with-examples/

⇱ AtomicIntegerArray lazySet() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

AtomicIntegerArray lazySet() method in Java with Examples

Last Updated : 27 Feb, 2019
The Java.util.concurrent.atomic.AtomicIntegerArray.lazySet() is an inbuilt method in Java that eventually sets a given value at any given index of an AtomicIntegerArray. The method takes the index value of the AtomicIntegerArray and the value to set as the parameters and updates the previous value without returning anything. Syntax:
public final void lazySet(int i, int newValue)
Parameters: The function takes two parameters:
  • i which is the index value where the update is to made.
  • newValue which is the new value to update at the index.
Return Value: The function does not return any value. Below programs illustrate the above method: Program 1:
Output:
The array : [1, 2, 3, 4, 5]
The array after update : [10, 2, 3, 4, 5]
Program 2:
Output:
The array : [1, 2, 3, 4, 5]
The array after update : [1, 2, 3, 100, 5]
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicIntegerArray.html#lazySet-int-int-
Comment