java.util.Arrays.fill(int[] a, int fromIndex, int toIndex, int val)方法實例
java.util.Arrays.fill(int[] a, int fromIndex, int toIndex, int val) 分配方法指定的int值到指定的int型數組指定範圍中的每個元素。要填充的範圍從索引fromIndex(包括)到索引toIndex(不含)。(如果fromIndex== toIndex,則填充範圍為空。)
聲明
以下是java.util.Arrays.fill()方法的聲明
public static void fill(int[] a, int fromIndex, int toIndex, int val)
參數
-
a -- 這是要填充的數組。
-
fromIndex -- 這是第一個元素(包括)到填充有指定的值的索引。
-
toIndex -- 這是最後一個元素(不含)以填充指定值的索引。
-
val -- 這是要被存儲在該數組中的所有元素的值。
返回值
此方法不返回任何值。
異常
-
ArrayIndexOutOfBoundsException -- 如果 fromIndex < 0 或 toIndex > a.length
-
IllegalArgumentException -- 如果 fromIndex > toIndex
例子
下麵的示例演示java.util.Arrays.fill()方法的用法。
package com.yiibai; 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); } } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Actual values: Value = 1 Value = 6 Value = 3 Value = 2 Value = 9 New values after using fill() method: Value = 1 Value = 6 Value = 18 Value = 18 Value = 9