首页  编辑  

List转Map

Tags: /Java/   Date Created:
Java中,把List<Demo>对象中根据某个key转换为 Map<key, Demo> 列表
Map<Long, Demo> map = list.stream().collect(Collectors.toMap(Demo::getKey, item -> item))