how to find size of an array java code example

Example 1: .length array java

/**
* An Example to get the Array Length is Java
*/
public class ArrayLengthJava {
public static void main(String[] args) {
String[] myArray = { "I", "Love", "Music" };
int arrayLength = myArray.length; //array length attribute
System.out.println("The length of the array is: " + arrayLength);
}
}

Example 2: java get size of array

arrayname.length

Example 3: Java length of array

int arrayLength = arr.length;