Java.util.concurrent.atomic.AtomicLongArray.length () es un método incorporado en Java que devuelve la longitud de AtomicLongArray. Este método no acepta ningún parámetro y devuelve la longitud del AtomicLongArray que es de tipo int .
Sintaxis:
longitud int final pública()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: la función devuelve la longitud de AtomicLongArray.
Los siguientes programas ilustran el método anterior:
Programa 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()); } }
Producción:
The length of the array : 5
Programa 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()); } }
Producción:
The length of the array : 7
Referencia:
https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLongArray.html#length–
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA