我怎样才能补充呢 new
作为java中枚举的值?
这是我的枚举:
public enum AgentProspectStatus
{
loose("loose"),
on_progress("on_progress"),
reached("reached"),
alumni("alumni"),
student("student"),
new("new"); // This throws an error
private String code;
AgentProspectStatus(String code)
{
this.code = code;
}
}
这个 new("new")
第行显示错误:
意外标记
1条答案
按热度按时间wribegjk1#
new
是java中的关键字。在java中,枚举应该用大写字母和大写字母拼写。更改案例将修复您的错误。