Joda 和 Java lang 整数不兼容

发布于 2024-12-16 17:31:59 字数 807 浏览 1 评论 0原文

收到此错误:

 incompatible types
    required: java.lang.Integer
    found: java.util.Map.Entry<org.joda.time.DateTime.java.lang.Integer>

以及导致错误的代码:

public static void checkRange() {

        DateTime startx = new DateTime(startDate.getTime());
        DateTime endx = new DateTime(endDate.getTime());

        //produces submap
        Map<DateTime, Integer> nav = map.subMap(startx, endx);

        //this is the line causing the error:
        for (Integer capacity : map.subMap(startx, endx).entrySet()) {

        }
}
}

我之前将 startDate 和 endDate 定义为 Date,然后我在此处将它们转换为 DateTime。我不认为这是问题所在 地图是

public static TreeMap<DateTime, Integer> map = new TreeMap<DateTime, Integer>();

谢谢,

Getting this error:

 incompatible types
    required: java.lang.Integer
    found: java.util.Map.Entry<org.joda.time.DateTime.java.lang.Integer>

and the code resulting in error:

public static void checkRange() {

        DateTime startx = new DateTime(startDate.getTime());
        DateTime endx = new DateTime(endDate.getTime());

        //produces submap
        Map<DateTime, Integer> nav = map.subMap(startx, endx);

        //this is the line causing the error:
        for (Integer capacity : map.subMap(startx, endx).entrySet()) {

        }
}
}

I have startDate and endDate defined as Date earlier then I convert them here as u can see to DateTime. I dont think that's the problem
and the map is

public static TreeMap<DateTime, Integer> map = new TreeMap<DateTime, Integer>();

Thanks,

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

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

发布评论

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

评论(2

红颜悴 2024-12-23 17:31:59

entrySet() 返回映射的“行”,即包含键和值的 Entry 对象。要仅迭代值,您可以使用 map.values(),在本例中它是 Integer 的集合。

The entrySet() returns the "rows" of the map, that is, the Entry objects containing both they keys and the values. To iterate over just the values, you can use map.values(), which is a collection of Integer in this case.

他不在意 2024-12-23 17:31:59

看来您想要的是 map.subMap(startx, endx).values() 而不是 map.subMap(startx, endx).entrySet()

It seems like what you want is map.subMap(startx, endx).values() instead of map.subMap(startx, endx).entrySet().

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