目录Stream流一、创建 Stream二、中间操作三、终端操作 四、数组转List五、综合使用Stream流
目录前言为什么不能用 Arrays 的 asList 方法将 int[] 装换成 ArrayList使用stream进行转换(jdk8 推荐)遍历数组,逐个加入元素到List中前言