Apache Commons Collections 中是否有与 ArrayIterator 等效的通用方法?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 injava.util
, of course.