List<String> list = new ArrayList<>() {//这个大括号 就相当于我们 new 接口
{//这个大括号 就是 构造代码块 会在构造函数前 调用
System.out.println("我是构造代码块");
this.add("one");//this 可以省略 这里加上 只是为了让读者 更容易理解
add("two");
}
};
list.forEach(System.out::println);
标签:初始化,java,list,List,System,add,new,out
From: https://blog.51cto.com/u_16110906/6507909