In this tutorial we will see how to use the Java iterator with Set interface . We will create an example to display the contents of the set collection.
In this tutorial we will see how to use the Java iterator with Set interface . We will create an example to display the contents of the set collection.
import java.util.*;
public class set1 {
public static void main(String[] args) {
Set s = new HashSet();
s.add("car");
s.add("scooter");
s.add("bike");
s.add("aeroplane");
s.add("car");
Iterator it = s.iterator();
while (it.hasNext()) {
System.out.println(it.next());
}
}
}
Output
car bike aeroplane scooter