当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.util.Arrays.fill()用法及代码示例



描述

这个java.util.Arrays.fill(short[] a, int fromIndex, int toIndex, short val)方法将指定的 short 值分配给指定 short 数组的指定范围内的每个元素。要填充的范围从索引 fromIndex(含)扩展到索引 toIndex(不包括)。(如果 fromIndex==toIndex,则要填充的范围为空。)。

声明

以下是声明java.util.Arrays.fill()方法

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

参数

  • a- 这是要填充的数组。

  • fromIndex- 这是要填充指定值的第一个元素(包括)的索引。

  • toIndex- 这是要填充指定值的最后一个元素(不包括)的索引。

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

返回值

此方法不返回任何值。

异常

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

  • IllegalArgumentException- 如果 fromIndex > toIndex

示例

下面的例子展示了 java.util.Arrays.fill() 方法的用法。

package com.tutorialspoint;

import java.util.Arrays;

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

      // initializing short array
      short arr[] = new short[] {2, 5, 13, 29, 97};

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

      // using fill for placing 19 from index 1 to 3
      Arrays.fill(arr, 1, 3, 19);

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

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

Actual values:
Value = 2
Value = 5
Value = 13
Value = 29
Value = 97
New values after using fill() method:
Value = 2
Value = 19
Value = 19
Value = 29
Value = 97

相关用法


注:本文由纯净天空筛选整理自 Java.util.Arrays.fill() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。