Java.util.concurrent.atomic.AtomicIntegerArray.length () es un método incorporado en Java que devuelve la longitud de AtomicIntegerArray. Este método no acepta ningún parámetro y devuelve la longitud de AtomicIntegerArray que es de tipo int .
Sintaxis:
public final int length()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: la función devuelve la longitud de AtomicIntegerArray.
Los siguientes programas ilustran el método anterior:
Programa 1:
// Java program that demonstrates // the length() function import java.util.concurrent.atomic.AtomicIntegerArray; public class GFG { public static void main(String args[]) { // Initializing an array int a[] = { 11, 12, 13, 14, 15 }; // Initializing an AtomicIntegerArray with array a AtomicIntegerArray arr = new AtomicIntegerArray(a); // Displaying the length of the AtomicIntegerArray System.out.println("The length of the array : " + arr.length()); } }
Producción:
The length of the array : 5
Programa 2:
// Java program that demonstrates // the length() function import java.util.concurrent.atomic.AtomicIntegerArray; public class GFG { public static void main(String args[]) { // Initializing an array int a[] = { 11, 12, 13, 14, 15, 16, 17 }; // Initializing an AtomicIntegerArray with array a AtomicIntegerArray arr = new AtomicIntegerArray(a); // Displaying the length of the AtomicIntegerArray System.out.println("The length of the array : " + arr.length()); } }
Producción:
The length of the array : 7
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/atomic/AtomicIntegerArray.html#length()