java.util.Arrays.fill()方法用于将指定的float值赋给指定的每个元素指定浮点数数组的范围。
语法
public static void fill(float[] a, int fromIndex, int toIndex, float val)
参数
a | 指定要填充的数组。 |
fromIndex | 指定第一个元素(含)的索引 |
toIndex | 指定要填充的最后一个元素(不包括)的索引指定的值。 |
val | 指定要存储在数组所有元素中的值。 |
返回值
void类型。
异常
- 抛出IllegalArgumentException ,如果 fromIndex > toIndex。
- 抛出 ArrayIndexOutOfBoundsException,如果 fromIndex < 0 或 toIndex > a.length。
示例:
在下面的示例中,java.util.Arrays.fill() 方法用于使用给定浮点数组的指定范围填充指定的浮点值。
import java.util.*;
public class MyClass {
public static void main(String[] args) {
//创建浮点数组
float MyArr[] = {10.1f, 2.6f, -3.6f, 35f, 56f};
//打印数组
System.out.print("MyArr contains:");
for(float i: MyArr)
System.out.print(" " + i);
//填充数组的指定范围
//0f 浮点值
Arrays.fill(MyArr, 1, 4, 0f);
//打印数组
System.out.print("\nMyArr contains:");
for(float i: MyArr)
System.out.print(" " + i);
}
}
上述代码的输出将是:
MyArr contains: 10.1 2.6 -3.6 35.0 56.0
MyArr contains: 10.1 0.0 0.0 0.0 56.0