枚举其他枚举
Public enum BASECOLORS {
GREEN,
RED
}
public enum ALLCOLORS {
VOILET,
ORANGE
}
在上面的代码中我如何访问ALLCOLORS.GREEN?所有颜色应该可以直接访问基色。
请帮助我提出您的建议...
Public enum BASECOLORS {
GREEN,
RED
}
public enum ALLCOLORS {
VOILET,
ORANGE
}
in the above code how can I access ALLCOLORS.GREEN? ALLCOLORS should have direct access to the BASECOLORS..
Please help me with your suggestions...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是不可能的。枚举是基元,不能从其他枚举继承,因为继承是对象的属性。
This is not possible. Enums are primitives and cannot inherit from other enums, as inheritance is a property of objects.