J'essaie de comprendre comment fonctionne la méthode de réduction dans les flux.
Stream.of(1,2,3,4,5,6,7).reduce(new ArrayList<>(),
(List<Integer> l, Integer a) -> {l.add(a);return l;},
(List<Integer> l1, List<Integer> l2) -> {
System.out.println("l1 is" + l1 + "l2 is " + l2);
l1.addAll(l2);
return l1;
}).forEach(System.out::println);
La ligne System.out.println("l1 is" + l1 + "l2 is " + l2)
ne sera jamais imprimé. Je peux comprendre ce qui se passe dans (List<Integer> l, Integer a) -> {l.add(a);return l;}
Quelqu'un peut-il expliquer pourquoi il n'est pas imprimé ? La documentation java dit function for combining two values, which must be compatible with the accumulator function
Merci, Amar