多平台统一管理软件接口,如何实现多平台统一管理软件接口
277
2022-12-29
Java8如何将Array转换为Stream的实现
引言
在 java8 中,您可以使用 Arrays.Stream 或 Stream.of 将 Array 转换为 Stream。
1. 对象数组
对于对象数组,Arrays.stream 和 Stream.of 都返回相同的输出。
public static void main(String[] args) {
ObjectArrays();
}
private static void ObjectArrays() {
String[] array = {"a", "b", "c", "d", "e"};
//Arrays.stream
Stream
stream.forEach(x-> System.out.println(x));
System.out.println("======");
//Stream.of
Stream
stream1.forEach(x-> System.out.println(x));
}
输出:
a
b
c
d
e
======
a
b
c
d
e
查看 JDK 源码,对于对象数组,Stream.of 内部调用了 Arrays.stream 方法。
// Arrays
public static
return stream(array, 0, array.length);
}
// Stream
public static
return Arrays.stream(values);
}
2. 基本数组
对于基本数组,Arrays.stream 和 Stream.of 将返回不同的输出。
public static void main(String[] args) {
PrimitiveArrays();
}
private static void PrimitiveArrays() {
int[] intArray = {1, 2, 3, 4, 5};
// 1. Arrays.stream -> IntStream
IntStream stream = Arrays.stream(intArray);
stream.forEach(x->System.out.println(x));
System.out.println("======");
// 2. Stream.of -> Stream
Stream
// 不能直接输出,需要先转换为 IntStream
IntStream intStream = temp.flatMapToInt(x -> Arrays.stream(x));
intStream.forEach(x-> System.out.println(x));
}
输出:
1
2
3
4
5
======
1
2
3
4
5
查看源码,
// Arrays
public static IntStream stream(int[] array) {
return stream(array, 0, array.lenGoaWUoHzcigth);
}
// Stream
public static
return StreamSupport.stream(new Streams.StreamBuilderImpl<>(t), false);
}
Which one
对于对象数组,两者都调用相同的 Arrays.shttp://tream 方法
对于基本数组,我更喜欢 Arrays.stream,因为它返回固定的大小 IntStream,更容易操作。
所以,推荐使用 Arrays.stream,不需要考虑是对象数组还是基本数组,直接返回对应的流对象,操作方便。
源码见:java-8-demo
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~