Why does Streamlt;Tgt; not implement Iterablelt;Tgt;?(为什么 Streamlt;Tgt;不实现Iterablelt;Tgt;?)
问题描述
在 Java 8 中,我们有类 Stream<T>,奇怪的是有一个方法
In Java 8 we have the class Stream<T>, which curiously have a method
Iterator<T> iterator()
所以你会期望它实现接口 Iterable<T>,正是需要这种方法,但事实并非如此.
So you would expect it to implement interface Iterable<T>, which requires exactly this method, but that's not the case.
当我想使用 foreach 循环遍历 Stream 时,我必须执行类似的操作
When I want to iterate over a Stream using a foreach loop, I have to do something like
public static Iterable<T> getIterable(Stream<T> s) {
return new Iterable<T> {
@Override
public Iterator<T> iterator() {
return s.iterator();
}
};
}
for (T element : getIterable(s)) { ... }
我错过了什么吗?
推荐答案
人们已经问过同样的问题 在邮件列表中 ☺.主要原因是Iterable也有可重迭代的语义,而Stream没有.
People have already asked the same on the mailing list ☺. The main reason is Iterable also has a re-iterable semantic, while Stream is not.
我认为主要原因是 Iterable
意味着可重用性,而 Stream
是只能使用一次的东西——更像是一个 Iterator
.
I think the main reason is that
Iterable
implies reusability, whereasStream
is something that can only be used once — more like anIterator
.
如果 Stream
扩展了 Iterable
则现有代码在收到抛出 Exception
的 Iterable
时可能会感到惊讶这他们第二次 for (element : iterable)
.
If Stream
extended Iterable
then existing code might be surprised when it receives an Iterable
that throws an Exception
the
second time they do for (element : iterable)
.
这篇关于为什么 Stream<T>不实现Iterable<T>?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 Stream<T>不实现Iterable<T>?
- 如何使用WebFilter实现授权头检查 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01