QN023. Write a program to declare, assign and accessing integer array.
1. Objective
To declare, assign and accessing integer array.
2. Theory
An array is a container that holds data (values) of one single type. For example, we can create an array that can hold 1000 values of int type.
How to declare an array?
Syntax:
dataType[] arrayName;
where,
-> dataType can be primitive or an object.
-> arrayName is an identifier.
How many elements can array hold?
-> To allocate memory for array elements.
Syntax:
dataType[] variableName = new dataType[SIZE];
If we assign SIZE = 10. Meaning, this array can hold 10 elements of specified dataType.
How to initialize arrays in Java?
->In Java, we can initialize arrays during declaration or later in the program(runtime).
For example,
int[] age={10,13,15,23};
How to access array elements?
-> We can easily access and alter array elements by using its numeric index.
For eg: age[2] //It gives 15 from the list.
3. Source Code
public class Qn023{
public static void main(String[] args){
int newArray[] = new int[3];//declaring array of size 3
newArray[0] = 10;//assigning the value to array index.
newArray[1] = 24;
newArray[2] = 36;
//accessing the array element
System.out.println(newArray[1]);
}
}
4. Output
24
5. Conclusion
In this way, I would like to conclude that, we can declare any number of(size) array using new keyword or without using it. We can access any value of any location using the idex number. Note that Java array index starts from 0.