Thursday, February 12, 2026
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

1 COMMENT

Most Popular

Dominic
32497 POSTS0 COMMENTS
Milvus
128 POSTS0 COMMENTS
Nango Kala
6869 POSTS0 COMMENTS
Nicole Veronica
11996 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12090 POSTS0 COMMENTS
Shaida Kate Naidoo
7009 POSTS0 COMMENTS
Ted Musemwa
7246 POSTS0 COMMENTS
Thapelo Manthata
6958 POSTS0 COMMENTS
Umr Jansen
6947 POSTS0 COMMENTS