我有一个Section具有如下属性的类
class Section {
private String name;
private String code;
// respective getters and setters.
}
现在我有一个部分对象列表,我想将该列表转换为名称和代码的映射。我知道可以按以下常规方式完成。
List<Section> sections = getSections();
Map<String, String> nameCodeMap = new HashMap<>();
for (Section section : sections) {
nameCodeMap.put(section.getCode(), section.getName());
}
我想知道 Java-8 流是否可以实现类似的功能。
倚天杖
汪汪一只猫
幕布斯7119047
相关分类