gpt4 book ai didi

java - For循环打印枚举的索引,但不打印值

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:25:33 24 4
gpt4 key购买 nike

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/

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