试题详情
- 单项选择题 interface Animal { void soundOff(); } class Elephant implements Animal { public void soundOff() { System.out.println(“Trumpet”); } } class Lion implements Animal { public void soundOff() { System.out.println(“Roar”); } } class Alpha1 { static Animal get( String choice ) { if ( choice.equalsIgnoreCase( “meat eater” )) { return new Lion(); } else { return new Elephant(); } } } Which compiles?()
A、 new Animal().soundOff();
B、 Elephant e = new Alpha1();
C、 Lion 1 = Alpha.get(“meat eater”);
D、 new Alpha1().get(“veggie”).soundOff();
- D
关注下方微信公众号,在线模考后查看
热门试题
- 关于红黑树和AVL树,以下哪种说法不正确
- 用“埃氏筛法”求2-100以内的素数。2
- 简述面向过程问题求解和面向对象问题求解的
- 当用户点击按钮时,Java程序采用什么方
- Which two̳
- 求1~99的平方根的和并输出结果。(保留
- 在一个循环中使用break,contin
- Given a va
- 已知: 则输出为()
- Which code,&ens
- For a give
- java中 String str = "
- 55.int[]x={1,2,3,4,
- HttpSession session=
- Given the&ensp
- class Rectangl
- 在函数中,“return”关键字有哪些作
- Java的屏幕坐标系的(0,0)在屏幕的
- Given a class Repet
- 求100-200之间的所有素数