声明枚举时出现问题
public enum ItemType{REFRENCE,ISSUE};
ItemType itemType = IntemType.ISSUE ;
int intemNo=0;
当我使用上面的代码时出现错误?为什么会这样?
public enum ItemType{REFRENCE,ISSUE};
ItemType itemType = IntemType.ISSUE ;
int intemNo=0;
I am geting error wheni use above code?why is it so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IntemType
或ItemType
您声明一个接口 - 接口不能有字段。将其声明为类感谢 JLS 的评论
IntemType
orItemType
Your declaring an interface - an interface can't have fields. Declare it as a classThanks for the comment, from JLS
您是否使用设置“source java 1.5”进行编译?
java 1.5 之前不支持 enum 语法。
Did you compile with setting "source java 1.5"?
The enum syntax was't supported before java 1.5.