Java Arrays fill方法-使用索引填充int


Java Arrays fill方法-使用索引填充int

package com.codingdict;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {

      // initializing int array
      int arr[] = new int[] {1, 6, 3, 2, 9};

      // let us print the values
      System.out.println("Actual values: ");
      for (int value : arr) {
         System.out.println("Value = " + value);
      }

      // using fill for placing 18 from index 2 to 4
      Arrays.fill(arr, 2, 4, 18);

      // let us print the values
      System.out.println("New values after using fill() method: ");
      for (int value : arr) {
         System.out.println("Value = " + value);
      }
   }
}