当前位置:SCJP程序员认证考试题库

问题:

[单选]

public class Drink implements Comparable { 
public String name; 
public int compareTo(Object o) { 
return 0; 
} 
} 
and: 
Drink one = new Drink(); 
Drink two = new Drink(); 
one.name= “Coffee”; 
two.name= “Tea”; 
TreeSet set = new TreeSet(); 
set.add(one); 
set.add(two); 
A programmer iterates over the TreeSet and prints the name of each Drink object. What is the result?() 

A .  Tea
B .  Coffee
C .  Coffee Tea
D .  Compilation fails.
E .  The code runs with no output.
F .  An exception is thrown at runtime.

独立样本 理论上纯磁铁矿的磁性率为()。 41.8%。 42.8%。 43.8%。 40.8。 序数效用论是如何说明价格――消费曲线的? 简述直通单座调节阀的特点及应用场合。 复合农林技术

public class Drink implements Comparable { 
public String name; 
public int compareTo(Object o) { 
return 0; 
} 
} 
and: 
Drink one = new Drink(); 
Drink two = new Drink(); 
one.name= “Coffee”; 
two.name= “Tea”; 
TreeSet set = new TreeSet(); 
set.add(one); 
set.add(two); 
A programmer iterates over the TreeSet and prints the name of each Drink object. What is the result?() 

参考答案:

  参考解析

本题暂无解析

在线 客服