我有一个这样的课程:
public enum ReturnCode{
Code1(
"Code1",
"Return this code when there is an erreur"
),
Code2(
"Code2",
"Return this code when everything ok"
);
ReturnCode(final String code, final String detail) {
this.code = code;
this.detail = detail;
}
private static Map<String, ReturnCode> map =
new HashMap<String, ReturnCode>();
static {
for (ReturnCode returnCode : ReturnCode.values()) {
map.put(returnCode.code, returnCode);
}
}
public static ReturnCode fromValue(String code) {
return map.get(code);
}
我只想知道复杂性,它是否优于:
public static returnCode fromValue(String code) {
for (returnCode returnCode : returnCode.values()) {
if (returnCode .code.equals(code)) {
return returnCode ;
}
}
}
因为似乎每次我们在第一个方法中调用fromValue时,它都会生成一个映射,所以它也是O(n)?
感谢。
答案 0 :(得分:0)
Map是静态对象。此外,它由静态代码块中的代码填充。每个类只调用一次静态代码块。没有理由不止一次生成地图。
这意味着你的第二个fromValue()
,即O(n),在性能方面将比原始fromValue()
慢,即O(1)。