运行 ❯
获取您自己的
Java 服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
import java.util.ArrayList; import java.util.ListIterator; public class Main { public static void main(String[] args) { // Make a collection ArrayList<String> cars = new ArrayList<String>(); cars.add("Volvo"); cars.add("BMW"); cars.add("Ford"); cars.add("Mazda"); // Get the iterator ListIterator<String> it = cars.listIterator(); // Loop through the list while(it.hasNext()) { System.out.println(it.next()); } System.out.println("---"); // Loop backwards through the list while(it.hasPrevious()) { System.out.println(it.previous()); } } }
沃尔沃
宝马
福特
马自达
---
马自达
福特
宝马
沃尔沃