我是lambdaj的新手,所以试图更多地习惯它。我想使用 lambdaj 更新此代码:
Passed in parameter Map<String, Device> devices;
final Map<String, String> resultHash = new HashMap<String, String>();
for (Device device : devices.values()) {
result.put(device.getAddress(), device.getName());
}
谢谢你的帮助
- 根据设备的地址索引设备,将为您提供LambdaMap。
- 将 LamdbaMap 的设备值转换为它们的名称,为您提供 LambdaMap。
从我的脑海中:
LambdaCollections.with(devices.values())
.index(Lambda.on(Device.class).getAddress())
.convertValues(Lambda.on(Device.class).getName());