1. 写一个 Set 集合,放入 5 个 HashSet 成员
package com.zhangyufan.collection;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
public class TestSet {
public static void main(String[] args) {
Set set = new HashSet();
set.add("123");
set.add("abc");
set.add(new Cat("小黄", "黄色", 1));
set.add("456");
set.add("xyz");
System.out.println("集合 set 的内容及 hashCode 值为:");
Iterator it = set.iterator();
while (it.hasNext()) {
System.out.println(it.next() + " hashCode 值:" + it.hashCode());
}
set.remove("123");
set.remove("abc");
System.out.print("使用 remove 移除几个对象后,集合 set 的内容为:");
for (Object o : set) {
System.out.print(o + " ");
}
System.out.println();
set.add("456");
set.add("xyz");
System.out.print("增加一些重复值之后,集合的 set 的内容为:");
for (Object o : set) {
System.out.print(o + " ");
}
System.out.println();
}
}
评论0
最新资源