collections stream lambda表达式的常见用法
collections stream lambda表达式的常见用法一 . collections ( 对集合进行操作的工具类 )(arrays是对数组进行操作的工具类 )常见用法static <T> boolean addAll(Collection<? super T> c, T... elements) // 将所有指定的元素添加到指定的集合。 ArrayList<String> list =