gpt4 book ai didi

java - java中的列表遍历

转载 作者:行者123 更新时间:2023-12-02 09:05:34 25 4
gpt4 key购买 nike

如何在java中的数组列表中遍历......

即使我有向前移动的代码......

但我不能认为这是向后遍历..

ArrayList<String> al = new ArrayList<String>();
al.add("Raj");
al.add("Sameer");
al.add("Nitu");
al.add("Biren");
al.add("Vishal");
Iterator<String> it = al.iterator();
System.out.println("Forward direction:-");
while(it.hasNext())
{
System.out.println(it.next());
}

最佳答案

您可以使用ListIterator:

System.out.println("Backward direction:-");
ListIterator<String> it = al.listIterator(al.size()); // this initializes the iterator to
// point to the end of the list
while(it.hasPrevious())
{
System.out.println(it.previous());
}

关于java - java中的列表遍历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43865468/

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