Java:为什么Collection.addAll不能接受Iterables?

发布于 2024-09-25 13:35:50 字数 143 浏览 3 评论 0原文

我想知道为什么 Collection.addAll() 方法只接受其他 Collection 而不是 Iterable 。这是为什么?

对于 Iterable 是否有类似的方法?

I wonder why the Collection.addAll() method only accepts other Collections but not Iterables. Why is that?

Any similar method to do that for Iterables?

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

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

发布评论

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

评论(5

葬心 2024-10-02 13:35:50

大概是因为 Collection 接口是在 Java 1.2 中引入的,而 Iterable 仅在 1.5 中出现,并且更改接口会破坏所有现有的实现。

Presumably because the Collection interface was introduced in Java 1.2 whereas Iterable appeared only in 1.5, and changing the interface would break all existing implementations.

终陌 2024-10-02 13:35:50

如有疑问,请务必检查 Guava(或 Commons):

When in doubt, always check Guava (or Commons):

凤舞天涯 2024-10-02 13:35:50

其他人广泛回答了“为什么”。

是否有类似的方法可以对 Iterables 执行此操作?

在 Java 8 中,您不再需要 addAll

Collection<X> coll = ...;
Iterable<X> it = ...;
it.forEach(coll::add); // coll.addAll(it);

Others have answered the "why" extensively.

Any similar method to do that for Iterables?

In Java 8 you don't need addAll any more:

Collection<X> coll = ...;
Iterable<X> it = ...;
it.forEach(coll::add); // coll.addAll(it);
似梦非梦 2024-10-02 13:35:50

基本上是因为 Iterable 可能永远不会结束(即 hasNext() 永远返回 true)。

另外,为了保持一致性,您可能认为 Collection 可以添加另一个集合的所有元素,但是 Iterable 不一定是一个集合(它可以是任何东西,比如例如 ResultSet 包装器)。

Basically because an Iterable may never end (that is, hasNext() return true forever).

Also, to keep congruency, you may think a Collection may add all the elements of another collection, but, an Iterable is not necesarily a collection (it may be anything, like the a ResultSet wrapper for instance).

梦途 2024-10-02 13:35:50

核心 JDK 中有很多东西不能像普通的 Iterables 一样工作得那么好。我建议使用 Guava 来克服许多这些缺点。

There are quite a few things in the core JDK which don't work as well with plain Iterables as they might. I'd recommend using Guava to overcome a lot of these shortcomings.

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