Open GeorgeCh2 opened 3 years ago
https://georgech2.github.io/java/2021/08/04/%E8%B0%A8%E6%85%8E%E4%BD%BF%E7%94%A8-Arrays.asList()-%E5%92%8C-Collections.singletonList().html
Arrays.asList() 和 Collections.singletonList() 创建的 List 集合均不能调用其 add 方法(不可变列表),否则会导致 UnsupportedOperationException 报错。
https://georgech2.github.io/java/2021/08/04/%E8%B0%A8%E6%85%8E%E4%BD%BF%E7%94%A8-Arrays.asList()-%E5%92%8C-Collections.singletonList().html
Arrays.asList() 和 Collections.singletonList() 创建的 List 集合均不能调用其 add 方法(不可变列表),否则会导致 UnsupportedOperationException 报错。