Arrays.fill(double[] a, double val) has the following syntax.
public static void fill(double[] a, double val)
In the following code shows how to use Arrays.fill(double[] a, double val) method.
/*www .j a v a2 s . c om*/ import java.util.Arrays; public class Main { public static void main(String[] args) { // initializing double array double arr[] = new double[] {1.2, 5.6, 3.4, 2.3, 6.7}; System.out.println(Arrays.toString(arr)); // using fill for placing 1.2 Arrays.fill(arr, 1.2); System.out.println(Arrays.toString(arr)); } }
The code above generates the following result.