public class Test {  public enum Dogs {collie, har...
单选题

public class Test {  public enum Dogs {collie, harrier, shepherd};  public static void main(String [] args) {  Dogs myDog = Dogs.shepherd;  switch (myDog) {  case collie:  System.out.print(”collie “);  case default:  System.out.print(”retriever “); case harrier:  System.out.print(”harrier “);  }  }  }  What is the result?() 

发布日期:2020-04-10

A.harrier

B.shepherd

C.retriever

D.Compilation fails.

E.retriever harrier

F.An exception is thrown at runtime.

热门试题

热门资讯

    暂无相关推荐~

分享给好友

分享到朋友圈

取消

使用浏览器的分享功能,把这篇文章分享出去

确定