Map<Integer, Product> productMap = productList.stream().collect(Collectors.toMap(Product::getProductId, v -> v));
时间: 2023-05-20 09:02:05 浏览: 116
将类中的List<String>改为proarrayList<product> proarray ,过程代码
这是一个使用 Java 8 中的 Stream API 将一个 Product 列表转换为一个 Map 的代码。其中,Product 的 productId 属性作为 Map 的键,Product 对象本身作为 Map 的值。
阅读全文