多做题,通过考试没问题!

Java认证考试

睦霖题库>其他计算机考试>Java认证考试

1. public class Test {  2. public  T findLarger(T x, T y) {  3. if(x.compareTo(y) > 0) {  4. return x;  5. } else {  6. return y;  7. }  8. }  9. }  and:  22. Test t = new Test();  23. // insert code here  Which two will compile without errors when inserted at line 23?()

  • A、 Object x = t.findLarger(123, “456”);
  • B、 int x = t.findLarger(123, new Double(456));
  • C、 int x = t.findLarger(123, new Integer(456));
  • D、 int x = (int) t.findLarger(new Double(123), new Double(456));
正确答案:A,C
答案解析:
进入题库查看解析

微信扫一扫手机做题