在使用Java 8 Stream时,我有时会发现Stream没有我想要的特定方法(例如takeWhile(),dropWhile() ,skipLast()
)。如何创建自己的流类,其中包含其他方法,而无需重写整个Java 8 Stream体系结构?
我知道StreamEx库并知道它有takeWhile()和dropWhile()。在写这篇文章时,它没有skipLast()
。我已为此方法提交了an issue。
答案 0 :(得分:4)
由于版本0.5.4 StreamEx库具有chain()
方法。这允许创建舒适插入的辅助方法。
public static <T> UnaryOperator<StreamEx<T>> skipLast(int n)
{
return(stream -> skipLast(stream, n));
}
private static StreamEx<T> skipLast(Stream<T> input, int n)
{
// implement the real logic of skipLast
}
有了上述内容,现在可以写...
StreamEx.
of(input).
chain(skipLast(10)).
forEach(System.out::println);