GeorgeCh2 / GeorgeCh2.github.io

个人博客前端仓库。参考自 https://blog.leeyom.top/#/posts/38
0 stars 0 forks source link

谨慎使用 Arrays.asList() 和 Collections.singletonList() | george’s blog #4

Open GeorgeCh2 opened 3 years ago

GeorgeCh2 commented 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 报错。