通过 List.of() 进行 ArrayList 初始化
来自 Core Java for the Impatient:
...数组列表没有初始值设定项语法。你能做的最好的事情就是构造一个数组列表,如下所示:
ArrayList<String> friends = new ArrayList<>(List.of("Peter", "Paul"));
但是当我尝试编译此代码时出现错误:
error: cannot find symbol
ArrayList<String> friends = new ArrayList<>(List.of("Peter", "Paul"));
^
symbol: variable List
我的进口商品是:
import java.util.List;
import java.util.ArrayList;
谢谢