我是Java新手,正在使用本站上的TreeMap代碼示例,但是當我嘗試遍歷TreeMap時,我得到一個空值列表,但是當我直接打印地圖時,可以看到鍵/值對。我該如何糾正這一點?當我從TreeMap打印出值時,爲什麼會得到空值列表?
import java.util.*;
public class Testing {
public static void main(String[] args) {
HashMap<String,Double> map = new HashMap<String,Double>();
ValueComparator1 bvc = new ValueComparator1(map);
TreeMap<String,Double> sorted_map = new TreeMap<String,Double>(bvc);
map.put("A",99.5);
map.put("B",67.4);
map.put("C",67.4);
map.put("D",67.3);
System.out.println("unsorted map: "+map);
sorted_map.putAll(map);
System.out.println("results: "+sorted_map);
for(String key: sorted_map.keySet())
{
System.out.println(sorted_map.get(key)); //null values-Why?
}
}
}
class ValueComparator1 implements Comparator<String> {
Map<String, Double> base;
public ValueComparator1(Map<String, Double> base) {
this.base = base;
}
// Note: this comparator imposes orderings that are inconsistent with equals.
public int compare(String a, String b) {
if (base.get(a) >= base.get(b)) {
return -1;
} else {
return 1;
} // returning 0 would merge keys
}
}
實現那只是需要的東西?因爲在這個例子中我所有的鍵都不同。仍然不明白這個編輯背後的原因。它工作順便。 – lord12
這是必要的,因爲當你調用get(「A」)時,並且地圖查看「A」的條目時,原始比較器說明鍵不相等,所以它不會返回該條目。 –