array.length -1 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: How to find the length of an array in java
class Main {
public static void main(String[] args) {
// Creating an array called x.
String[] x = new String[]{"This", "Should", "return", "4"};
// "x.length" finds the length of the array "x".
System.out.println(x.length);
// returns 4
}
}