gpt4 book ai didi

java - HashMap 与 Treemap

转载 作者:行者123 更新时间:2023-12-01 06:32:48 25 4
gpt4 key购买 nike

我有一个代码,如果我使用 HashMap,则可以工作,但如果我使用 TreeMap,则不行,谁能告诉我这是为什么吗?

这是我的代码:

package ka.fil;

import java.util.HashMap;
import java.util.Map;

public class ModelInMemory implements Model {
private Map<String,BeanRecord> map = new HashMap<>();

@Override
public void putRecord(BeanRecord beanRecord) {
map.put(beanRecord.getEmail(), beanRecord);

}

@Override
public BeanRecord getRecord(String email) {
BeanRecord r = map.get(email);
return r;
}

@Override
public Iterable<BeanRecord> allRecord() {
return map.values();
}

public ModelInMemory() {

}



}

我所说的不工作的意思是,当我在主方法中使用它时,我得到这个:

 Exception in thread "main" java.lang.NullPointerException at
java.util.TreeMap.compare(Unknown Source) at java.util.TreeMap.put(Unknown Source)
at ka.fil.ModelInMemory.putRecord(ModelInMemory.java:11)
at ka.fil.AppBatch.main(AppBatch.java:10)

最佳答案

一个区别是 TreeMap 不支持 null 键,但 HashMap 则支持。

对于 TreeMap,如果 beanRecord.getEmail() 返回 null,则在运行时会出现异常。

关于java - HashMap 与 Treemap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16949543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com