是否可以根據來自其他列表的條目減少列表?使用其他列表中的值減少列表
下面是類似的東西:
list1.forEach(l1 -> {
list2.forEach(l2 -> {
if (l1.getId() == l2.getId())
reducedActions.add(l2); // that's the new list where the filtered entries should be add
});
});
編輯:我excpect什麼:
l1: 10, 15, ,16
l2: 1, 2, 12, 10, 11, 14, 16
reducedActions: 10, 16
你是什麼意思的減少?減少(聚合)和篩選(選擇)是兩件不同的事情。 – kai
你能解釋一下你期望的結果嗎? – Holger
請參閱我的編輯 –