Thursday, June 11, 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
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS