how to check length of array in java code example
Example 1: .length array java
public class ArrayLengthJava {
public static void main(String[] args) {
String[] myArray = { "I", "Love", "Music" };
int arrayLength = myArray.length;
System.out.println("The length of the array is: " + arrayLength);
}
}
Example 2: how to find length of array in java
let coolCars = ['ford', 'chevy'];
let length = coolCars.length;
Example 3: length of array in java
arr.length;
Example 4: How to find the length of an array in java
class Main {
public static void main(String[] args) {
String[] x = new String[]{"This", "Should", "return", "4"};
System.out.println(x.length);
}
}
Example 5: java get size of array
arrayname.length