Simple Array Example in Java
Introduction
Simple array is a classic Java console program that demonstrates the concept with complete source code and sample output. Arrays store fixed-size sequences with fast index access — a foundation before collections.
This tutorial walks through the program line by line, explains how the logic works, and highlights best practices you can apply in your own code.
Definition
An array is a data structure consisting of a collection of elements (values or variables), each identified by at least one array index or key. An array is stored so that the position of each element can be computed from its index by a mathematical formula. The simplest type of data structure is a linear array, also called one-dimensional array.
Syntax
Data_type[] Variable_name = new Data_type[Length];Simple array Example Program
class SimpleArray{
public static void main(String args[]){
int[] a=new int[5];
a[0]=5;
a[1]=10;
a[2]=15;
a[3]=20;
a[4]=25;
for(int i=0;i < a.length;i++){
System.out.println(a[i]);
}
}
}Sample Output
5
10
15
20
25When to use
Use this simple array example when learning or revising core Java syntax.
How it works
-
Execution begins in the
mainmethod — the JVM calls this method when you run the class. -
int[] a=new int[5];updates a variable used in the calculation or output. -
a[0]=5;updates a variable used in the calculation or output. -
a[1]=10;updates a variable used in the calculation or output. -
a[2]=15;updates a variable used in the calculation or output. -
a[3]=20;updates a variable used in the calculation or output. -
a[4]=25;updates a variable used in the calculation or output. -
A loop repeats the block until its condition becomes false.