sample
Stream.iterate( 5, i -> i++ )
.limit(10)
.forEach(System.out::print);
Kompilieren → Ausführen: Ergebnis 5555555555
sample
Stream.iterate( 0, i -> i++ )
.limit(5)
.forEach(System.out::println);
Kompilieren → Ausführen: Ergebnis 0 0 0 0 0
sample
Stream.iterate( 1, i -> ++i )
.limit(10)
.forEach(System.out::print);
Kompilieren → Ausführen: Ergebnis 12345678910
Recommended Posts