Run ❯
Get your
own Java
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
import java.util.LinkedList; import java.util.Iterator; public class Main { public static void main(String[] args) { // Make a collection LinkedList
cars = new LinkedList
(); cars.add("Volvo"); cars.add("BMW"); cars.add("Ford"); cars.add("Mazda"); // Get the iterator Iterator
it = cars.iterator(); // Loop through a collection while(it.hasNext()) { System.out.println(it.next()); } } }
Volvo
BMW
Ford
Mazda