gpt4 book ai didi

Java使用索引来一一显示数组

转载 作者:行者123 更新时间:2023-12-02 06:33:50 25 4
gpt4 key购买 nike

我在按索引显示数组时遇到问题,我不知道为什么会发生这种情况。任何帮助将不胜感激。这是我的代码片段:

// create token2
String token2 = "";

// create Scanner inFile2
Scanner inFile2 = new Scanner(new File
("/Users/timothylee/KeyWestHumid.txt")).
useDelimiter(",\\s*");

// create temps2
List<String> temps2 = new LinkedList<String>();

// while loop
while(inFile2.hasNext()){

// find next
token2 = inFile2.next();

// initialize temps2
temps2.add(token2);
}

// close inFile2
inFile2.close();

// create array
String[] tempsArray2 = temps2.toArray(new String[0]);

// for-each loop
for(String ss : tempsArray2){

// display ss
System.out.println(tempsArray2[0]);
}

最佳答案

// for-each loop
for(String ss : tempsArray2){

// display ss
System.out.println(tempsArray2[0]);

你的问题就在这里。您实际上根本没有使用 ss 变量,您只是每次循环时显示第一个字符串。

关于Java使用索引来一一显示数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19850616/

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