集合转Map,把集合中的对象的某个属性作为KEY,对象本身作为Value 集合转Map,把集合中的对象的某个属性作为KEY,对象本身作为ValueMap<String, User> infoDtoMap = list.parallelStream().collect( Collectors.toMap(User::getId, Function.identity(), (key1, key2) -> key2)); Function.identity() 标识 t>t ,对象本身。