1. 程式人生 > >JDK8 List 集合轉 Map 集合

JDK8 List 集合轉 Map 集合

JDK8 List 集合轉 Map 集合

方式一:
            List<ServiceConfig> list = serviceConfigService.list(null);
            Map<Long, ServiceConfig> mapAll = list.stream().collect(Collectors.toMap(ServiceConfig::getServiceId, Function.identity()));