HashMap 中的 keySet 字段为 null

发布于 2024-08-21 16:22:08 字数 608 浏览 3 评论 0原文

我正在尝试使用 keySet() 方法循环 HashMap ,如下所示:

for (String key : bundle.keySet()) {
    String value = bundle.get(key);
    ...
}

我在代码的其他部分的 HashMap 上使用了很多 for-each 循环,但是这是一种奇怪的行为:它的大小为 7(正常情况),但 keySetentrySetvaluesnull(根据 Eclipse 调试器)!

“bundle”变量被实例化并填充如下(没有什么原创的......):

Map <String, String> privVar;
Constructor(){
    privVar = new HashMap<String, String>();
}
public void add(String key, String value) {
    this.privVar.put(key, value);
}

I am trying to loop over a HashMap with the keySet() method as below:

for (String key : bundle.keySet()) {
    String value = bundle.get(key);
    ...
}

I use a lot of for-each loops on HashMaps in other parts of my code, but this one as a weird behavior: its size is 7 (what's normal) but keySet, entrySet and values are null (according to the Eclipse debugger)!

The "bundle" variable is instantiated and populated as follows (nothing original...):

Map <String, String> privVar;
Constructor(){
    privVar = new HashMap<String, String>();
}
public void add(String key, String value) {
    this.privVar.put(key, value);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与风相奔跑 2024-08-28 16:22:08

keySetentrySetvalues 是什么意思?如果您指的是HashMap的内部字段,那么您不应该查看它们,也不需要关心它们。它们用于缓存。

例如,在 Java 6 VM 中,我使用 keySet() 的实现如下:

public Set<K> keySet() {
    Set<K> ks = keySet;
    return (ks != null ? ks : (keySet = new KeySet()));
}

因此,keySetnull 的事实是无关紧要的。 keySet()(方法)永远不会返回null

entrySet()values() 也是如此。

What do you mean by keySet, entrySet and values? If you mean the internal fields of HashMap, then you should not look at them and need not care about them. They are used for caching.

For example in the Java 6 VM that I use keySet() is implemented like this:

public Set<K> keySet() {
    Set<K> ks = keySet;
    return (ks != null ? ks : (keySet = new KeySet()));
}

So the fact that keySet is null is irrelevant. keySet() (the method) will never return null.

The same is true for entrySet() and values().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文