Fill an empty array with numbers Example Java Program

Definition

An array is a way of storing several items (such as integers). These items must have the same type (only integers, only strings, ...) because an array can not store different kinds of items. Every item in an array has a number so the programmer can get the item by using that number. This number is called the index. The first item has index 0, the second item has index 1 and so on.

Syntax

 Data_type[] Variable_name={value1, value2, ......};

Fill an empty array with numbers Example Program

import java.util.Arrays;

public class ArrayFill {
    public static void main(String[] args) {
		int[] values = new int[10];
		Arrays.fill(values, 5);
		for (int value : values) {
			System.out.print(value);
			System.out.print(' ');
		}
    }
}

Sample Output

Output is:
5 5 5 5 5 5 5 5 5 5