Java程序以短数组填充元素

可以使用java.util.Arrays.fill()方法以短数组填充元素。此方法将所需的short值分配给Java中的short数组。所需的两个参数是数组名称和要存储在数组元素中的值。

演示此的程序如下所示-

示例

import java.util.Arrays;
public class Demo {
   public static void main(String[] argv) throws Exception {
      short[] shortArray = new short[5];
      short shortValue = 1;
      Arrays.fill(shortArray, shortValue);
      System.out.println("The short array content is: " + Arrays.toString(shortArray));
   }
}

输出结果

The short array content is: [1, 1, 1, 1, 1]

现在让我们了解上面的程序。

首先定义短数组shortArray []。然后,使用Arrays.fill()方法将值1填充到短数组中。最后,使用Arrays.toString()方法打印短数组。演示这的代码片段如下-

short[] shortArray = new short[5];
short shortValue = 1;
Arrays.fill(shortArray, shortValue);
System.out.println("The short array content is: " + Arrays.toString(shortArray));