试题详情
多项选择题 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
  • 关注下方微信公众号,在线模考后查看

热门试题