Saturday, September 27, 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
32323 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6690 POSTS0 COMMENTS
Nicole Veronica
11857 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11914 POSTS0 COMMENTS
Shaida Kate Naidoo
6807 POSTS0 COMMENTS
Ted Musemwa
7073 POSTS0 COMMENTS
Thapelo Manthata
6763 POSTS0 COMMENTS
Umr Jansen
6768 POSTS0 COMMENTS