标签:public 新特性 没有 hash map div class strong 抛出异常
import java.util.List; import java.util.Map; import java.util.Set; public class Demo08 { public static void main(String[] args) { Set<String> str1 = Set.of("a", "b", "c"); //str1.add("c");这里编译的时候不会错,但是执行的时候会报错,因为是不可变的集合 System.out.println(str1);//[b, c, a] Map<String, Integer> str2 = Map.of("a", 1, "b", 2); System.out.println(str2);//{b=2, a=1} List<String> str3 = List.of("a", "b"); System.out.println(str3);//[a, b] } }
执行结果
[c, b, a] {a=1, b=2} [a, b]
标签:public 新特性 没有 hash map div class strong 抛出异常
原文地址:https://www.cnblogs.com/wurengen/p/10921900.html