Arrays in Java
Unlike C++, arrays are first class objects in Java. For example, in the following program, size of array is accessed using length which is a member of arr[] object.
// file name: Main.java public class Main { public static void main(String args[]) { int arr[] = { 10 , 20 , 30 , 40 , 50 }; for ( int i= 0 ; i < arr.length; i++) { System.out.print( " " + arr[i]); } } } |
Output:
10 20 30 40 50
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready.