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








Syntax

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

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

Example

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

/* w  w  w . jav  a 2  s  . com*/
import java.util.Arrays;

public class Main {

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

    // using fill for placing 19 from index 1 to 3
    Arrays.fill(arr, 1, 3,(short) 19);

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

The code above generates the following result.