提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
如何创建Java HashSet并为HashSet添加值
/* nowjava.com 提 供 */ import java.util.HashSet; public class Main { public static void main(String[] args) { HashSet hSet = new HashSet(); hSet.add(new Integer("1")); hSet.add(new Integer("2")); hSet.add(new Integer("3")); System.out.println("HashSet contains.." + hSet); } }