- public class CollectionDemo {
- public static void main(String[] args) {
- HashSet hs = new HashSet();
- hs.add("abc");
- hs.add("cde");
- hs.add("sdlfka");
- System.out.println(hs);
- for(Iterator it = hs.iterator(); it.hasNext();){
- System.out.println(it.next());
- }
- }
- }
复制代码 |
|