ストリームは、入ってくるデータのコレクションまたはストリームの上で実行したいさまざまな操作の構成のためのはるかに優れた抽象化を提供します。特に、要素をマップし、それらをフィルタリングおよび変換する必要がある場合。
あなたの例はあまり実用的ではありません。Oracleサイトの次のコードを検討してください。
List<Transaction> groceryTransactions = new Arraylist<>();
for(Transaction t: transactions){
if(t.getType() == Transaction.GROCERY){
groceryTransactions.add(t);
}
}
Collections.sort(groceryTransactions, new Comparator(){
public int compare(Transaction t1, Transaction t2){
return t2.getValue().compareTo(t1.getValue());
}
});
List<Integer> transactionIds = new ArrayList<>();
for(Transaction t: groceryTransactions){
transactionsIds.add(t.getId());
}
ストリームを使用して記述できます:
List<Integer> transactionsIds =
transactions.stream()
.filter(t -> t.getType() == Transaction.GROCERY)
.sorted(comparing(Transaction::getValue).reversed())
.map(Transaction::getId)
.collect(toList());
2番目のオプションははるかに読みやすくなっています。そのため、ネストされたループまたは部分処理を行うさまざまなループがある場合、Streams / Lambda APIの使用に非常に適しています。