-2
我正在尋找一種方法來搜索一個枚舉,以查看用戶提供的字符串是否與任何值匹配,所以我創建了這個。這是否被認爲是一種很好的搜索方法一個枚舉?是這樣搜索一個枚舉可接受的
enum Month {JAN,FEB,MAR,APR,MAY,JUN,JUL,AUG,SEP,OCT,NOV,DEC};
try {
String A = "DECc";
Month.valueOf(A);
} catch(Exception e) {
System.out.println("Could not find an enum with the String you entered");
}
那麼,你的問題是什麼? – YakovL