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.
Java
// 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]); } } } |
10 20 30 40 50
Time Complexity : O(N) ,where N is size of array
Auxiliary space :O(1)
Please write comments if you find anything incorrect, or if you want to share more information about the topic discussed above.
[…] array is a group of like-typed variables that are referred to by a common name. Arrays in Java work […]
[…] Prerequisite: Arrays in Java […]
[…] calculated using the location of the first index of the array using a simple mathematical relation. Arrays in Java are different in implementation and usage when compared to that in C/C++ although they have many […]
[…] Read more here Arrays in Java […]
[…] array is a group of like-typed variables that are referred to by a common name. An array can contain […]
[…] Arrays store items in an ordered collection and the values can be accessed using the index(an integer). […]