package sun.scjp; public enum Color { RED, GREEN, BLUE } package sun.beta; // insert code here public class Beta { Color g = GREEN; public static void main( String[] argv) { System.out.println( GREEN); } } The class Beta and the enum Color are in different packages. Which two code fragments, inserted individually at line 2 of the Beta declaration, will allow this code to compile?()
- A、 import sun.scjp.Color.*;
- B、 import static sun.scjp.Color.*;
- C、 import sun.scjp.Color; import static sun.scjp.Color.*;
- D、 import sun.scjp.*; import static sun.scjp.Color.*;
- E、 import sun.scjp.Color; import static sun.scjp.Color.GREEN;
正确答案:C,E
答案解析:有
微信扫一扫手机做题