Java 8 のストリーム API は、Java 7 以前のイテレータで書き直されました。
Supplier
、 Function
、 Consumer
など);Stream
/ IntStream
/ LongStream
/ DoubleStream
(並列処理はありませんが、さまざまな追加メソッドとカスタム演算子を使用します)。Optional
/ OptionalBoolean
/ OptionalInt
/ OptionalLong
/ OptionalDouble
クラス。Exceptional
クラス - 例外を処理する機能的な方法。Objects
。 Stream . of ( /* array | list | set | map | anything based on Iterator/Iterable interface */ )
. filter (..)
. map (..)
...
. sorted ()
. forEach (..);
Stream . of ( value1 , value2 , value3 )...
IntStream . range ( 0 , 10 )...
プロジェクト例: https://github.com/aNNiMON/Android-Java-8-Stream-Example
Java 8 ストリームとは異なり、Lightweight-Stream-API はカスタム オペレーターを適用する機能を提供します。
Stream . of (...)
. custom ( new Reverse <>())
. forEach (...);
public final class Reverse < T > implements UnaryOperator < Stream < T >> {
@ Override
public Stream < T > apply ( Stream < T > stream ) {
final Iterator <? extends T > iterator = stream . getIterator ();
final ArrayDeque < T > deque = new ArrayDeque < T >();
while ( iterator . hasNext ()) {
deque . addFirst ( iterator . next ());
}
return Stream . of ( deque . iterator ());
}
}
ここでさらに多くの例を見つけることができます。
バックポートされた Java 8 Stream 演算子に加えて、ライブラリは以下を提供します。
filterNot
- 否定されたfilter
演算子
// Java 8
stream . filter ((( Predicate < String >) String :: isEmpty ). negate ())
// LSA
stream . filterNot ( String :: isEmpty )
select
- 指定されたクラスのインスタンスをフィルタリングします
// Java 8
stream . filter ( Integer . class :: isInstance )
// LSA
stream . select ( Integer . class )
withoutNulls
- null 要素以外の要素のみをフィルターします
Stream . of ( "a" , null , "c" , "d" , null )
. withoutNulls () // [a, c, d]
sortBy
- 抽出関数で並べ替えます
// Java 8
stream . sorted ( Comparator . comparing ( Person :: getName ))
// LSA
stream . sortBy ( Person :: getName )
groupBy
- 抽出関数によるグループ化
// Java 8
stream . collect ( Collectors . groupingBy ( Person :: getName )). entrySet (). stream ()
// LSA
stream . groupBy ( Person :: getName )
chunkBy
- 分類子関数によってソートされたストリームをパーティション化する
Stream . of ( "a" , "b" , "cd" , "ef" , "gh" , "ij" , "klmnn" )
. chunkBy ( String :: length ) // [[a, b], [cd, ef, gh, ij], [klmnn]]
sample
- n 番目の要素ごとに出力します
Stream . rangeClosed ( 0 , 10 )
. sample ( 2 ) // [0, 2, 4, 6, 8, 10]
slidingWindow
- パーティションは固定サイズのリストにストリームされ、要素上をスライドします。
Stream . rangeClosed ( 0 , 10 )
. slidingWindow ( 4 , 6 ) // [[0, 1, 2, 3], [6, 7, 8, 9]]
takeWhile
/ dropWhile
- Java 9 で導入され、述語関数によってストリームを制限/スキップします
Stream . of ( "a" , "b" , "cd" , "ef" , "g" )
. takeWhile ( s -> s . length () == 1 ) // [a, b]
Stream . of ( "a" , "b" , "cd" , "ef" , "g" )
. dropWhile ( s -> s . length () == 1 ) // [cd, ef, g]
scan
- 累積関数を繰り返し適用し、ストリームを返します
IntStream . range ( 1 , 6 )
. scan (( a , b ) -> a + b ) // [1, 3, 6, 10, 15]
indexed
- すべての要素にインデックスを追加します。結果はIntPair
です。
Stream . of ( "a" , "b" , "c" )
. indexed () // [(0 : "a"), (1 : "b"), (2 : "c")]
filterIndexed
/ mapIndexed
/ takeWhileIndexed
/ takeUntilIndexed
/ dropWhileIndexed
/ reduceIndexed
/ forEachIndexed
- 演算子のインデックス付き特殊化
Stream . of ( "a" , "b" , "c" )
. mapIndexed (( i , s ) -> s + Integer . toString ( i )) // [a0, b1, c2]
ラムダ式での醜い try/catch はもう必要ありません。
// Java 8
stream . map ( file -> {
try {
return new FileInputStream ( file );
} catch ( IOException ioe ) {
return null ;
}
})
// LSA
stream . map ( Function . Util . safe ( FileInputStream :: new ))
最新リリースをダウンロードするか、Maven 経由で取得します。
< dependency >
< groupId >com.annimon</ groupId >
< artifactId >stream</ artifactId >
< version >1.2.2</ version >
</ dependency >
またはグラドル:
dependencies {
.. .
implementation ' com.annimon:stream:1.2.2 '
.. .
}
または、JitPack で最新の未公開機能を使用します。
Java ME用のバージョンも含まれています。 Javame ブランチをチェックアウトします。