以下 java 代码无法在 eclipse 中编译。我在这里做错了什么?如果该方法只返回一个int
而不是一个,那么一切正常,enum
所以它基本上设置好了。问题在于引入枚举返回类型。
public class myclass {
public enum mytype {
mytype2,
mytype1,
};
public static mytype retmytype() {
return mytype2;
}
}
//in another class
myclass.mytype t = myclass.retmytype(); //ERROR - myclass.mytype cannot be solved