Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建使用“枚举”作为变量名的非常古老的 Java 代码,并且出现“无法将枚举解析为变量”错误。如何消除错误?
<OLD JAVA CODE> Enumeration enum = props.propertyNames(); while (enum.hasMoreElements()) {
在此站点之后,我尝试将编译器合规级别设置为 1.3,但它不起作用。
再次检查属性 > Java 编译器设置。您可以通过在此对话框中配置编译器合规性设置来摆脱使用保留关键字引起的错误enum(我使用的是 Juno):
enum
朱诺对话