Friday, December 12, 2025
HomeLanguagesJavaAtomicReferenceArray length() method in Java with Examples

AtomicReferenceArray length() method in Java with Examples

The length() method of a AtomicReferenceArray class is used to return the length of this AtomicReferenceArray.

Syntax:

public final int length()

Parameters: This method accepts nothing.

Return value: This method returns the integer representing length of this AtomicReferenceArray.

Below programs illustrate the length() method:
Program 1:




// Java program to demonstrate
// AtomicReferenceArray.length() method
  
import java.util.concurrent.atomic.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create an atomic reference object.
        AtomicReferenceArray<Integer> ref
            = new AtomicReferenceArray<Integer>(5);
  
        // print the length
        int length = ref.length();
        System.out.println(
            "length of AtomicReferenceArray = "
            + length);
    }
}


Output:

length of AtomicReferenceArray = 5

Program 2:




// Java program to demonstrate
// AtomicReferenceArray.length() method
  
import java.util.concurrent.atomic.*;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // create a array of Strings
        String[] names
            = { "AMAN", "AMAR", "SURAJ" };
  
        // create an atomic reference object.
        AtomicReferenceArray<String> ref
            = new AtomicReferenceArray<String>(names);
  
        // print the length
        int length = ref.length();
        System.out.println(
            "length of AtomicReferenceArray = "
            + length);
    }
}


Output:

length of AtomicReferenceArray = 3

References: https://docs.oracle.com/javase/10/docs/api/java/util/concurrent/atomic/AtomicReferenceArray.html#length()

RELATED ARTICLES

Most Popular

Dominic
32444 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6813 POSTS0 COMMENTS
Nicole Veronica
11951 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12027 POSTS0 COMMENTS
Shaida Kate Naidoo
6945 POSTS0 COMMENTS
Ted Musemwa
7198 POSTS0 COMMENTS
Thapelo Manthata
6892 POSTS0 COMMENTS
Umr Jansen
6881 POSTS0 COMMENTS