- Java.util 包类
- Java.util - 首页
- Java.util - ArrayDeque
- Java.util - ArrayList
- Java.util - Arrays
- Java.util - BitSet
- Java.util - Calendar
- Java.util - Collections
- Java.util - Currency
- Java.util - Date
- Java.util - Dictionary
- Java.util - EnumMap
- Java.util - EnumSet
- Java.util - Formatter
- Java.util - GregorianCalendar
- Java.util - HashMap
- Java.util - HashSet
- Java.util - Hashtable
- Java.util - IdentityHashMap
- Java.util - LinkedHashMap
- Java.util - LinkedHashSet
- Java.util - LinkedList
- Java.util - ListResourceBundle
- Java.util - Locale
- Java.util - Observable
- Java.util - PriorityQueue
- Java.util - Properties
- Java.util - PropertyPermission
- Java.util - PropertyResourceBundle
- Java.util - Random
- Java.util - ResourceBundle
- Java.util - ResourceBundle.Control
- Java.util - Scanner
- Java.util - ServiceLoader
- Java.util - SimpleTimeZone
- Java.util - Stack
- Java.util - StringTokenizer
- Java.util - Timer
- Java.util - TimerTask
- Java.util - TimeZone
- Java.util - TreeMap
- Java.util - TreeSet
- Java.util - UUID
- Java.util - Vector
- Java.util - WeakHashMap
- Java.util 包额外内容
- Java.util - 接口
- Java.util - 异常
- Java.util - 枚举
- Java.util 有用资源
- Java.util - 有用资源
- Java.util - 讨论
Java Arrays fill(Object[], Object) 方法
描述
Java Arrays fill(Object[] a, Object val) 方法将指定的 Object 值赋给指定 Object 数组的每个元素。
声明
以下是 java.util.Arrays.fill(Object[] a, Object val) 方法的声明
public static void fill(Object[] a, Object val)
参数
a − 要填充的数组。
val − 要存储在数组所有元素中的值。
返回值
此方法不返回值。
异常
ArrayStoreException − 如果指定的值不是可以存储在指定数组中的运行时类型。
Java Arrays fill(Object[] a, int fromIndex, int toIndex, Object val) 方法
描述
Java Arrays fill(Object[] a, int fromIndex, int toIndex, Object val) 方法将指定的 Object 值赋给指定 Object 数组的指定范围内的每个元素。要填充的范围从索引 fromIndex(包含)到索引 toIndex(不包含)。(如果 fromIndex==toIndex,则要填充的范围为空。)
声明
以下是 java.util.Arrays.fill(Object[] a, int fromIndex, int toIndex, Object val) 方法的声明
public static void fill(Object[] a, int fromIndex, int toIndex, Object val)
参数
a − 要填充的数组。
fromIndex − 第一个(包含)要填充指定值的元素的索引。
toIndex − 最后一个(不包含)要填充指定值的元素的索引。
val − 要存储在数组所有元素中的值。
返回值
此方法不返回值。
异常
ArrayIndexOutOfBoundsException − 如果 fromIndex < 0 或 toIndex > a.length
IllegalArgumentException − 如果 fromIndex > toIndex
ArrayStoreException − 如果指定的值不是可以存储在指定数组中的运行时类型。
使用给定值填充 Object 数组示例
以下示例显示了 Java Arrays fill(Object[], Object) 方法的使用。首先,我们创建了一个 Object 数组并打印其元素。使用 fill(Object[], Object) 方法,我们用给定值填充数组,然后再次打印更新后的数组元素。
package com.tutorialspoint; import java.util.Arrays; public class ArrayDemo { public static void main(String[] args) { // initializing Student array Student arr[] = { new Student(1, "Julie"), new Student(3, "Adam"), new Student(2, "Robert") }; // let us print the values System.out.println("Actual values: "); for (Student value : arr) { System.out.println("Value = " + value); } Student replacement = new Student(0, ""); // using fill for placing value Arrays.fill(arr, replacement); // let us print the values System.out.println("New values after using fill() method: "); for (Student value : arr) { System.out.println("Value = " + value); } } } class Student { int rollNo; String name; Student(int rollNo, String name){ this.rollNo = rollNo; this.name = name; } @Override public String toString() { return "[ " + this.rollNo + ", " + this.name + " ]"; } }
输出
让我们编译并运行上述程序,这将产生以下结果:
Actual values: Value = [ 1, Julie ] Value = [ 3, Adam ] Value = [ 2, Robert ] New values after using fill() method: Value = [ 0, ] Value = [ 0, ] Value = [ 0, ]
使用给定值填充 Object 子数组示例
以下示例显示了 Java Arrays fill(Object[], int, int, Object) 方法的使用。首先,我们创建了一个 Object 数组并打印其元素。使用 fill(Object[], int, int, Object) 方法,我们用给定值填充数组,然后再次打印更新后的数组元素。
package com.tutorialspoint; import java.util.Arrays; public class ArrayDemo { public static void main(String[] args) { // initializing Student array Student arr[] = { new Student(1, "Julie"), new Student(3, "Adam"), new Student(2, "Robert") }; // let us print the values System.out.println("Actual values: "); for (Student value : arr) { System.out.println("Value = " + value); } Student replacement = new Student(0, ""); // using fill for placing value from index 0 to 3 Arrays.fill(arr, 0, 3, replacement); // let us print the values System.out.println("New values after using fill() method: "); for (Student value : arr) { System.out.println("Value = " + value); } } } class Student { int rollNo; String name; Student(int rollNo, String name){ this.rollNo = rollNo; this.name = name; } @Override public String toString() { return "[ " + this.rollNo + ", " + this.name + " ]"; } }
输出
让我们编译并运行上述程序,这将产生以下结果:
Actual values: Value = [ 1, Julie ] Value = [ 3, Adam ] Value = [ 2, Robert ] New values after using fill() method: Value = [ 0, ] Value = [ 0, ] Value = [ 0, ]
使用给定值填充 Object 子数组示例
以下示例显示了 Java Arrays fill(Object[], int, int, Object) 方法的使用。首先,我们创建了一个 Object 数组并打印其元素。使用 fill(Object[], int, int, Object) 方法,我们用给定值填充数组的子数组,然后再次打印更新后的数组元素。
package com.tutorialspoint; import java.util.Arrays; public class ArrayDemo { public static void main(String[] args) { // initializing Student array Student arr[] = { new Student(1, "Julie"), new Student(3, "Adam"), new Student(2, "Robert") }; // let us print the values System.out.println("Actual values: "); for (Student value : arr) { System.out.println("Value = " + value); } Student replacement = new Student(0, ""); // using fill for placing value from index 0 to 2 Arrays.fill(arr, 0, 2, replacement); // let us print the values System.out.println("New values after using fill() method: "); for (Student value : arr) { System.out.println("Value = " + value); } } } class Student { int rollNo; String name; Student(int rollNo, String name){ this.rollNo = rollNo; this.name = name; } @Override public String toString() { return "[ " + this.rollNo + ", " + this.name + " ]"; } }
输出
让我们编译并运行上述程序,这将产生以下结果:
Actual values: Value = [ 1, Julie ] Value = [ 3, Adam ] Value = [ 2, Robert ] New values after using fill() method: Value = [ 0, ] Value = [ 0, ] Value = [ 2, Robert ]