Atype p=(1,2,3,4);
Btype p=(1..4);
Ctype p=(‘a‘,‘b‘,‘c‘,‘d‘);
Dtype p=(a,b,c,d);
第1题:
在下列枚举类型的定义中,包含枚举值3的是
A.entire test(RED,YELLOW,BLUE,BLACK);
B.entire test(RED,YELLOW,BLUE,BLACK);
C.enum test(RED=-1,YELLOW,BLUE,BLACK);
D.enum test(RED,YELLOW=6,BLUE,BLACK);
第2题:
第3题:
8、定义一个颜色的枚举类型Color,下面正确的是()。
A.public enum Color {red, green, yellow, blue}
B.public enum Color {1:red, 2:green, 3:yellow, 4:blue}
C.public enum Color {1:red; 2:green; 3:yellow; 4:blue}
D.public enum Color {Stringred, String green, String yellow, String blue}
第4题:
第5题:
定义一个颜色的枚举类型Color,下面正确的是()。
A.public enum Color {red, green, yellow, blue}
B.public enum Color {1:red, 2:green, 3:yellow, 4:blue}
C.public enum Color {1:red; 2:green; 3:yellow; 4:blue}
D.public enum Color {Stringred, String green, String yellow, String blue}