Sunday, June 30, 2024
HomeLanguagesJavaAtomicLongArray length() method in Java with Examples

AtomicLongArray length() method in Java with Examples

The Java.util.concurrent.atomic.AtomicLongArray.length() is an inbuilt method in Java that returns the length of the AtomicLongArray. This method does not accepts any parameter and returns the length of the AtomicLongArray 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 AtomicLongArray.

Below programs illustrate the above method:

Program 1:




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


Output:

The length of the array : 7

Reference:
https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLongArray.html#length–

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments