Collections.singletonList()
创建不可变List,只包含单个元素,List容量始终为1;
Arrays.asList()
快速创建List, 但创建的列表是不可变的,不可调用add方法;
标签:Arrays,创建,List,singletonList,Collections,asList From: https://www.cnblogs.com/ReturnOfTheKing/p/17774234.html
Collections.singletonList()
创建不可变List,只包含单个元素,List容量始终为1;
Arrays.asList()
快速创建List, 但创建的列表是不可变的,不可调用add方法;
标签:Arrays,创建,List,singletonList,Collections,asList From: https://www.cnblogs.com/ReturnOfTheKing/p/17774234.html