java.util.Arrays.fill(char[] a, int fromIndex, int toIndex, char val)方法实例
java.util.Arrays.fill(char[] a, int fromIndex, int toIndex, char val) 方法分配指定char值到指定字符数组指定范围中的每个元素。要填充的范围从索引fromIndex(包括)到索引toIndex(不包括)。(如果fromIndex== toIndex,则填充范围为空。)
声明
以下是java.util.Arrays.fill()方法的声明
public static void fill(char[] a, int fromIndex, int toIndex, char 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 char array char arr[] = new char[] {'a','b','c','d','e','f'}; // let us print the values System.out.println("Actual values: "); for (char value : arr) { System.out.println("Value = " + value); } // using fill for placing z from index 2 to 4 Arrays.fill(arr, 2, 4, 'z'); // let us print the values System.out.println("New values after using fill() method: "); for (char value : arr) { System.out.println("Value = " + value); } } }
让我们来编译和运行上面的程序,这将产生以下结果:
Actual values: Value = a Value = b Value = c Value = d Value = e Value = f New values after using fill() method: Value = a Value = b Value = z Value = z Value = e Value = f