Supposons que j'ai une classe et une méthode class A { void foo() throws Exception() { ... } } Maintenant, je voudrais appeler foo pour chaque instance de Alivré par un flux comme: void bar() throws Exception { Stream<A> as = ... as.forEach(a -> a.foo()); } Question: Comment gérer...