Friday, August 29, 2025
HomeLanguagesJavaArrays in Java

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.  

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]);            
    }
    }
}


Output

 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.

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

6 COMMENTS

Most Popular

Dominic
32247 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6615 POSTS0 COMMENTS
Nicole Veronica
11788 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11835 POSTS0 COMMENTS
Shaida Kate Naidoo
6731 POSTS0 COMMENTS
Ted Musemwa
7011 POSTS0 COMMENTS
Thapelo Manthata
6686 POSTS0 COMMENTS
Umr Jansen
6699 POSTS0 COMMENTS