找考题网-背景图
多项选择题

Given:  
11. // insert code here  
12. private N min, max;  
13. public N getMin() { return min; }  
14. public N getMax() { return max; }  
15. public void add(N added) {  
16. if (min == null || added.doubleValue() < min.doubleValue()) 
17. min = added;  
18. if (max == null || added.doubleValue() > max.doubleValue()) 
19. max = added;  
20. }  
21. }  
Which two, inserted at line 11, will allow the code to compile?()


A.A
B.B
C.C
D.D
E.E
F.F

热门试题