阿摩線上測驗 登入

試題詳解

試卷:104年 - SCJP 151-200#99330 | 科目:OJCP(SCJP)

試卷資訊

試卷名稱:104年 - SCJP 151-200#99330

年份:104年

科目:OJCP(SCJP)

187. Given: 
1. public class Score implements Comparable<Score>{
 2. private int wins, losses; 
3. public Score(int w, int l){wins = w; losses = l;} 
4. public int getWins(){return wins;} 
5. public int getLosses(){return losses;} 
6. public String toString(){ 
7. return "<" + wins + "," + losses + ">"; 
8. } 
9. //insert code here
 10. } 
Which method will complete this class?
(A) public int compareTo(Object o){/* more code here */}
(B) public int compareTo(Score other){/* more code here */}
(C) public int compare(Score s1, Score s2){/* more code here */}
(D) public int compare(Object o1, Object o2){/* more code here */}
正確答案:登入後查看