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