我正在尝试使用流来处理某些事情,我认为我有一个概念上的误解.我试图获取一个数组,将其转换为流,并在数组中的.forEach项我想运行一个函数并从foreach返回该函数的结果列表.
基本上这个:
Thing[] functionedThings = Array.stream(things).forEach(thing -> functionWithReturn(thing))
解决方法
您正在寻找的是
map
操作:
Thing[] functionedThings = Arrays.stream(things).map(thing -> functionWithReturn(thing)).toArray(Thing[]::new);
此方法用于将对象映射到另一个对象;引用Javadoc,它说它更好:
Returns a stream consisting of the results of applying the given function to the elements of this stream.
请注意,使用toArray(generator)
方法将Stream转换回数组;使用的生成器是一个函数(它实际上是一个方法引用)返回一个新的Thing数组.