本帖最后由 XinWen 于 2014-5-3 14:01 编辑
- <div class="blockcode"><blockquote>enum Lamp2{
- Red(3, 0),Green,Yello;
-
- public static final int RED = 0;
- public static final int GREEN = 1;
- public static final int YELLO = 2;
-
- private int mTime;
- private int mColor;
-
-
- private Lamp2(){
-
- }
-
- private Lamp2(int pTime, int pColor){
- mTime = pTime;
- mColor = pColor;
- }
- }
复制代码
为什么 定义 枚举 值列表的时候, 不能访问下面定义的常量,比如我上面的 Red穿参数的时候,不能用下面定义的 RED
|