No hay un método size() disponible con la array. Pero hay un campo de longitud disponible en la array que se puede usar para encontrar la longitud o el tamaño de la array.
array.length: la longitud es una variable final aplicable para arrays. Con la ayuda de la variable de longitud, podemos obtener el tamaño de la array.
Ejemplos:
int size = arr[].length; // length can be used // for int[], double[], String[] // to know the length of the arrays.
A continuación se muestra la ilustración de cómo obtener la longitud de la array [] en Java usando la variable de longitud:
Ejemplo 1:
// Java program to illustrate // how to get the length of the array public class Test { public static void main(String[] args) { // Here array is the // array name of int type int[] array = new int[4]; System.out.println("The size of " + "the array is " + array.length); } }
Producción:
The size of the array is 4
Ejemplo 2:
// Java program to illustrate // how to get the length of the array public class Test { public static void main(String[] args) { // Here str is the array name // of String type. String[] str = { "GEEKS", "FOR", "GEEKS" }; System.out.println("The size of " + "the array is " + str.length); } }
Producción:
The size of the array is 3