Java Collection Tutorial - Java Arrays.fill(short[] a, short val)








Syntax

Arrays.fill(short[] a, short val) has the following syntax.

public static void fill(short[] a, short val)

Example

In the following code shows how to use Arrays.fill(short[] a, short val) method.

/* w  ww  .  j  a  va 2 s.c om*/


import java.util.Arrays;

public class Main {

  public static void main(String[] args) {
    
    // initializing short array
    short arr[] = new short[] {1, 2, 3, 4, 13};
    
    System.out.println(Arrays.toString(arr));

    // using fill for placing 23
    Arrays.fill(arr, (short)23);

    System.out.println(Arrays.toString(arr));
  }
}

The code above generates the following result.