What is the advantage of IntStream over usual Stream?(IntStream 与通常的 Stream 相比有什么优势?)
问题描述
IntStream
、DoubleStream
或 LongStream
如何优于 Java 8 中的常规流?
How is IntStream
, DoubleStream
, or LongStream
better than regular stream in Java 8?
这些线程是否具有高性能或可用性?
Do these threads have high performance or maybe usability?
推荐答案
Stream<Integer>
等必须使用装箱值(Integer
而不是原始 int
) 会占用更多内存,并且通常需要大量装箱/拆箱操作(取决于您的代码).为什么只有 Int/Double/Long
?只是因为它们被期望最常使用.
Stream<Integer>
etc. have to work with boxed values (Integer
instead of primitive int
) which takes significantly more memory and usually a lot of boxing/unboxing operations (depending on your code). Why only Int/Double/Long
? Just because they were expected to be used most often.
同样适用于 OptionalInt
和朋友以及所有功能接口.
Same applies to OptionalInt
and friends and all the functional interfaces.
对于集合(列表/地图/集合),出于同样的原因,有许多第三方库提供原始专业化.确实,问题更加严重,因为对于流,您不需要(通常;sorted()
是一个反例)需要在内存中存储许多值.
For collections (lists/maps/sets) there are many third-party libraries providing primitive specialization for the same reason. Really the problem there is even more acute because with streams you don't (usually; sorted()
is a counter-example) need to store many values in memory.
这篇关于IntStream 与通常的 Stream 相比有什么优势?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:IntStream 与通常的 Stream 相比有什么优势?
基础教程推荐
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01