Open In App

AtomicIntegerArray length() method in Java with Examples

Last Updated : 27 Feb, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The Java.util.concurrent.atomic.AtomicIntegerArray.length() is an inbuilt method in Java that returns the length of the AtomicIntegerArray. This method does not accepts any parameter and returns the length of the AtomicIntegerArray 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 AtomicIntegerArray. Below programs illustrate the above method: Program 1:
Output:
The length of the array : 5
Program 2:
Output:
The length of the array : 7
Reference: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicIntegerArray.html#length()

Next Article
Practice Tags :

Similar Reads