Answers for "define length of array java"

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
  }
}
Posted by: Guest on February-22-2020
0

int

int[] array;

// is equivalent to

int array[];
Posted by: Guest on January-01-1970

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language