Apache Commons Collections 中是否有与 ArrayIterator 等效的通用方法?

发布于 2024-09-06 17:48:29 字数 412 浏览 4 评论 0原文

ArrayIterator 很方便(尽管我不需要 reset 功能),但与 Commons Collections 的其他内容一样,它不使用泛型。我检查了 Google 收藏集,但没有看到类似的内容。我错过了吗?是否还有另一个与前两个具有相似声誉和质量的库提供这样的东西?谢谢。

ArrayIterator is handy (although I don't need the reset functionality), but like the rest of the Commons Collections stuff, it doesn't use generics. I checked Google Collections, but I didn't see a close equivalent. Did I miss it? Is there another library of similar reputation and quality as the first two that provides such a thing? Thanks.

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

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

发布评论

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

评论(1

风轻花落早 2024-09-13 17:48:29

Arrays.asList(array).iterator()

Arrays.asList(array).subList(start, end).iterator()

这些方法调用很便宜——它们不实际上并不复制任何数据。当然,Arrays 类位于 java.util 中。

Arrays.asList(array).iterator()

Arrays.asList(array).subList(start, end).iterator()

These method calls are cheap -- they don't actually copy any data. The Arrays class is in java.util, of course.

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