gpt4 book ai didi

java - Java 中的数组 for 循环和 RNG

转载 作者:行者123 更新时间:2023-11-30 02:17:03 25 4
gpt4 key购买 nike

我正在尝试编写一个简单的 for 循环,该循环生成三个整数并将每个值分配给数组索引。我的代码中的第二个 for 循环返回意外结果。有人可以向我解释一下发生了什么事吗?

import java.util.Random;

public class Main {

public static void main(String[] args) {

//variables
int[] array = new int[3];
Random rand = new Random();

//all else

for(int item : array) {
array[item] = rand.nextInt(100)+1;
System.out.println(array[item]);
}

System.out.println("\n " + array[0] + " " + array[1] + " " + array[2]);

for(int i = array.length; i > 0; i--){
System.out.println(array[i-1]);
}

}

}

最佳答案

for (int item : array) {                     
array[item] = rand.nextInt(100)+1;
System.out.println(array[item]);
}

通过使用增强的 for 循环,item 的值将始终为 0,因为数组在循环开始之前刚刚初始化。本质上,这只会将数组的第一个索引设置为随机值(在您定义的范围之间)并打印它。

要正确迭代数组,您应该使用以下内容:

for (int i = 0; i < array.length; i++) {                     
array[i] = rand.nextInt(100)+1;
System.out.println(array[i]);
}

关于java - Java 中的数组 for 循环和 RNG,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48017848/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com