我目前正在尝试从另一个项目加载一个类,但它在运行时给出了这个错误而不是编译时间:
VFY: unable to resolve static field 840 (Read) in Lshared/TestingMode;
Caused by: java.lang.NoClassDefFoundError: shared.TestingMode
这是班级:
public enum TestingMode {
Read,
Write}
我已导入项目并修复了Java Build Path,因此没有编译错误。
答案 0 :(得分:0)
而是创建枚举,创建一个公共类,其成员在公共静态最终变量中,并从类名访问它。