List.of(...) 或 Collections.unmodifiableList()
2022-09-03 01:20:01
如果你有一个实例,你会继续写:List<String> strings
Collections.unmodifiableList(strings)
或切换到:
List.of(strings.toArray(new String[strings.size()]))
对实例化的性能(内存和运行时方面)的初始影响是什么?变体中是否有运行时优势?List.of