gpt4 book ai didi

java - 使用枚举作为 map 的键

转载 作者:IT老高 更新时间:2023-10-28 21:04:26 25 4
gpt4 key购买 nike

我想使用 enum 作为键和对象作为值。以下是示例代码片段:

public class DistributorAuditSection implements Comparable<DistributorAuditSection>{      

private Map questionComponentsMap;

public Map getQuestionComponentsMap(){
return questionComponentsMap;
}

public void setQuestionComponentsMap(Integer key, Object questionComponents){
if((questionComponentsMap == null) || (questionComponentsMap != null && questionComponentsMap.isEmpty())){
this.questionComponentsMap = new HashMap<Integer,Object>();
}
this.questionComponentsMap.put(key,questionComponents);
}
}

它现在是一个普通的 hashmap,具有整数键和对象作为值。现在我想把它改成Enummap。这样我就可以使用 enum 键了。我也不知道如何使用 Enummap 检索值。

最佳答案

原理同Map只需声明 enum并将其用作KeyEnumMap .

public enum Color {
RED, YELLOW, GREEN
}

Map<Color, String> enumMap = new EnumMap<Color, String>(Color.class);
enumMap.put(Color.RED, "red");
String value = enumMap.get(Color.RED);

您可以找到有关 Enums 的更多信息here

关于java - 使用枚举作为 map 的键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12669497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com