toList转换成list toSet转换成set joining按一定规则拼接字符串 mapping映射 collectingAndThen先搜集后处理 reducing规约 groupingBy元素分组 toMap元素转map toCollection // 把元素按集合类型收集起来,这里是LinkedListLinkedList<Integer>linkedList=Stream.of(1,2,3,4,5,6).collect(Collectors.toCollection(LinkedList:...