JAVA链表如何通过for循环遍历?

您好,我正在尝试创建一个遍历链表的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循环遍历? 的全部内容, 来源链接: utcz.com/qa/429107.html

回到顶部