fill()方法共有两种参数类型,分别是: (1)Arrays.fill(int[] a,int value) a :要进行替换元素的数组 value :替换的元素值 public class S
fill()方法共有两种参数类型,分别是:
(1)Arrays.fill(int[] a,int value)
a :要进行替换元素的数组
value :替换的元素值
public class Swap { public static void main(String[] args) { int[] ints = new int[5];//定义一个一维数组,含有五个数,默认值为0 Arrays.fill(ints,8);//替换数组的元素,值为8 for (int i = 0; i < ints.length; i++) { System.out.println(ints[i]);//循环输出数组中的元素值 } }}原数组:{0,0,0,0,0}修改之后的数组{8,8,8,8,8}
(2)Arrays.fill(int[] a,int fromIndex,int toIndex,int value)
a :要进行替换元素的数组
fromIndex :需要替换元素的第一个索引值,包括当前位置
toIndex :需要替换元素的最后一个索引值,不包括当前位置
value :替换的元素值
public class Displace { public static void main(String[] args) { int[] ints = {45, 12, 2, 10}; Arrays.fill(ints,1,2,8); for (int i = 0; i < ints.length; i++) { System.out.println(ints[i]); } }}原数组:{45,12,2,10}修改之后的数组:{45,8,2,10}
来源地址:https://blog.csdn.net/weixin_43756037/article/details/128063266
--结束END--
本文标题: Java数组中Arrays.fill()方法讲解
本文链接: https://lsjlt.com/news/400629.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-01
2024-04-03
2024-04-03
2024-01-21
2024-01-21
2024-01-21
2024-01-21
2023-12-23
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0