私がやろうとしていることはこれです:
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