Java Arrays fill(float[], float) 方法



描述

Java Arrays fill(float[] a, float val) 方法将指定的浮点值赋给指定浮点数组的每个元素。

声明

以下是 java.util.Arrays.fill(float[] a, float val) 方法的声明

public static void fill(float[] a, float val)

参数

  • a − 要填充的数组。

  • val − 要存储在数组所有元素中的值。

返回值

此方法不返回值。

异常

Java Arrays fill(float[] a, int fromIndex, int toIndex, float val) 方法

描述

Java Arrays fill(float[] a, int fromIndex, int toIndex, float val) 方法将指定的浮点值赋给指定浮点数组的指定范围内的每个元素。要填充的范围从索引 fromIndex(包含)扩展到索引 toIndex(不包含)。(如果 fromIndex==toIndex,则要填充的范围为空。)

声明

以下是 java.util.Arrays.fill(float[] a, int fromIndex, int toIndex, float val) 方法的声明

public static void fill(float[] a, int fromIndex, int toIndex, float val)

参数

  • a − 要填充的数组。

  • fromIndex − 要用指定值填充的第一个元素(包含)的索引。

  • toIndex − 要用指定值填充的最后一个元素(不包含)的索引。

  • val − 要存储在数组所有元素中的值。

返回值

此方法不返回值。

异常

  • ArrayIndexOutOfBoundsException − 如果 fromIndex < 0 或 toIndex > a.length

  • IllegalArgumentException − 如果 fromIndex > toIndex

使用给定值填充浮点数组示例

以下示例演示了 Java Arrays fill(float[], float) 方法的使用。首先,我们创建了一个浮点数组并打印了其元素。使用 fill(float[], float) 方法,我们将数组填充为给定值,然后再次打印更新后的数组元素。

package com.tutorialspoint;

import java.util.Arrays;

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

      // initializing float array
      float arr[] = new float[] { 10.0f, 20.0f, 15.0f };

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

      float replacement = 0.0f;
      
      // using fill for placing value
      Arrays.fill(arr, replacement);

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

输出

让我们编译并运行上述程序,这将产生以下结果:

Actual values: 
Value = 10.0
Value = 20.0
Value = 15.0
New values after using fill() method: 
Value = 0.0
Value = 0.0
Value = 0.0

使用给定值填充浮点子数组示例

以下示例演示了 Java Arrays fill(float[], int, int, float) 方法的使用。首先,我们创建了一个浮点数组并打印了其元素。使用 fill(float[], int, int, float) 方法,我们将数组填充为给定值,然后再次打印更新后的数组元素。

package com.tutorialspoint;

import java.util.Arrays;

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

      // initializing float array
      float arr[] = new float[] { 10.0f, 20.0f, 15.0f };

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

      float replacement = 0.0f;
      
      // 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 (float value : arr) {
         System.out.println("Value = " + value);
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Actual values: 
Value = 10.0
Value = 20.0
Value = 15.0
New values after using fill() method: 
Value = 0.0
Value = 0.0
Value = 0.0

使用给定值填充浮点子数组示例

以下示例演示了 Java Arrays fill(float[], int, int, float) 方法的使用。首先,我们创建了一个浮点数组并打印了其元素。使用 fill(float[], int, int, float) 方法,我们将数组的子数组填充为给定值,然后再次打印更新后的数组元素。

package com.tutorialspoint;

import java.util.Arrays;

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

      // initializing float array
      float arr[] = new float[] { 10.0f, 20.0f, 15.0f };

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

      float replacement = 0.0f;
      
      // 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 (float value : arr) {
         System.out.println("Value = " + value);
      }
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Actual values: 
Value = 10.0
Value = 20.0
Value = 15.0
New values after using fill() method: 
Value = 0.0
Value = 0.0
Value = 15.0
java_util_arrays.htm
广告