Return | Method | Summary |
---|---|---|
Iterator<E> | iterator() | Returns an iterator over the elements in this set. |
import java.util.HashSet;
import java.util.Iterator;
public class Main{
public static void main(String args[]) {
HashSet<String> hs = new HashSet<String>();
hs.add("java2s.com");
hs.add("A");
hs.add("D");
hs.add("E");
hs.add("C");
hs.add("j a v a2s.com");
Iterator<String> itr = hs.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
}
}
}
The output:
D
E
j a v a2s.com
A
java2s.com
C
java2s.com | Contact Us | Privacy Policy |
Copyright 2009 - 12 Demo Source and Support. All rights reserved. |
All other trademarks are property of their respective owners. |