public enum ClassB { RED(1), YELLOW(2); private int key; ClassB(int key) { this.key = key; } }
没有定义构造方法