gpt4 book ai didi

JAVA链表如何用for循环遍历?

转载 作者:搜寻专家 更新时间:2023-11-01 03:59:39 25 4
gpt4 key购买 nike

您好,我正在尝试创建一个遍历链表的 for 循环。对于每条数据,它将单独列出。我正在尝试在这里学习链表,所以请不要提出数组建议。有人知道怎么做吗?

示例输出:

  1. 187号航类
  2. 501号类机

我的代码如下:

public static LinkedList<String> Flights = new LinkedList<String>();

public flightinfo(){
String[] flightNum = {"187", "501"};
for (String x : flightNum)
Flights.add(x);

for (???)


}

最佳答案

只需使用增强的 for 循环,就像使用数组一样:

for(String flight : flights) {
// do what you like with it
}

关于JAVA链表如何用for循环遍历?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6245767/

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