when i use Java 8 Stream.of primitive type, the result is confused(当我使用 Java 8 Stream.of 原始类型时,结果很混乱)
问题描述
byte[] a = {1,2,3};System.out.println(Stream.of(a).count());字节[] b = {1,2,3};System.out.println(Stream.of(b).count());
结果是1和3,为什么?
Stream.of
只接受对象作为其参数.byte
不是 Object,但 byte
数组是.如果a
是byte
的数组,那么Stream.of(a)
只能表示这个对象的流,是一个数组".
如果你有一个 Byte[]
数组,那么数组的每个元素都是一个对象,所以编译器可以猜到你的意思.
这里有关于如何流式传输字节数组的信息:在Java 8中,有ByteStream类吗?p>
byte[] a = {1,2,3};
System.out.println(Stream.of(a).count());
Byte[] b = {1,2,3};
System.out.println(Stream.of(b).count());
the result is 1 and 3, why?
Stream.of
only accepts Objects as its arguments. A byte
isn't an Object, but a byte
array is. If a
is an array of byte
, then Stream.of(a)
can only mean "stream of this one object, which is an array".
If you have a Byte[]
array, then each element of the array is an object, so the compiler can guess that's what you mean.
There is information here about how you can stream a byte array: In Java 8, is there a ByteStream class?
这篇关于当我使用 Java 8 Stream.of 原始类型时,结果很混乱的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:当我使用 Java 8 Stream.of 原始类型时,结果很混乱
基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 降序排序:Java Map 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01