使用值宣告 HashSet
你可以建立一個繼承自 HashSet 的新類:
Set<String> h = new HashSet<String>() {{
add("a");
add("b");
}};
一線解決方案:
Set<String> h = new HashSet<String>(Arrays.asList("a", "b"));
使用番石榴:
Sets.newHashSet("a", "b", "c")
使用 Streams:
Set<String> set3 = Stream.of("a", "b", "c").collect(toSet());