作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
public enum Months{
JANUARY("first"), FEBRUARY("second"), MARCH("third"), APRIL("fourth"), MAY("fifth"), JUNE("sixth"), JULY("seventh"),
AUGUST("eigth"), SEPTEMBER("ninth"), OCTOBER("tenth"), NOVEMBER("eleventh"), DECEMBER("twelfth");
private String name;
// value in parentheses after elements
Months(String name){
this.name = name;
}
public String getName(){
return name;
}
public String toString(){
return name;
}
这是我的枚举
public class Test {
public static void main(String [] args){
for(Months m : Months.values()){
System.out.println(m);
}
这是我的主要方法。但是这个 for 循环访问 toString 方法并打印索引的值,即 first、second 等。有什么方法可以遍历并打印索引,即 JANUARY、FEBRUARY 等?
最佳答案
所有 enum
元素都提供了一个 name()
方法,它将为您提供用于定义元素的标识符,例如Month.JANUARY.name()
将是 "JANUARY"
。
关于java - For循环打印枚举的索引,但不打印值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27135132/
我是一名优秀的程序员,十分优秀!