为什么我不能在Java的内部类中创建枚举?
2022-08-31 13:50:26
我试图做的是这样的:
public class History {
public class State {
public enum StateType {
Eclipse 在 : 上给了我这个编译错误。StateType
The member enum StateType must be defined inside a static member type
当我使类成为静态时,错误消失了。我可以使静态,但我不明白为什么我不能在内部类中声明一个。State
State
enum