Thursday, January 22, 2026
HomeLanguagesJavaAtomicIntegerArray length() method in Java with Examples

AtomicIntegerArray length() method in Java with Examples

The Java.util.concurrent.atomic.AtomicIntegerArray.length() is an inbuilt method in Java that returns the length of the AtomicIntegerArray. This method does not accepts any parameter and returns the length of the AtomicIntegerArray which is of type int.

Syntax:

public final int length()

Parameters: The function does not accept any parameter.

Return Value: The function returns the length of the AtomicIntegerArray.

Below programs illustrate the above method:

Program 1:




// Java program that demonstrates
// the length() function
  
import java.util.concurrent.atomic.AtomicIntegerArray;
  
public class GFG {
    public static void main(String args[])
    {
        // Initializing an array
        int a[] = { 11, 12, 13, 14, 15 };
  
        // Initializing an AtomicIntegerArray with array a
        AtomicIntegerArray arr = new AtomicIntegerArray(a);
  
        // Displaying the length of the AtomicIntegerArray
        System.out.println("The length of the array : "
                           + arr.length());
    }
}


Output:

The length of the array : 5

Program 2:




// Java program that demonstrates
// the length() function
  
import java.util.concurrent.atomic.AtomicIntegerArray;
  
public class GFG {
    public static void main(String args[])
    {
        // Initializing an array
        int a[] = { 11, 12, 13, 14, 15, 16, 17 };
  
        // Initializing an AtomicIntegerArray with array a
        AtomicIntegerArray arr = new AtomicIntegerArray(a);
  
        // Displaying the length of the AtomicIntegerArray
        System.out.println("The length of the array : "
                           + arr.length());
    }
}


Output:

The length of the array : 7

Reference: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicIntegerArray.html#length()

RELATED ARTICLES

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12064 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7220 POSTS0 COMMENTS
Thapelo Manthata
6933 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS