Nachrichten

Die wesentliche Neuerung von Java 8 ist die Erweiterung der Sprachmittel um Lambda-Ausdrücke. Sie erlauben einen funktionalen Programmierstil in der ja eigentlich rein objektorientierten Sprache. Doch ...
filter und map sind sogenannte intermediäre Operatoren, die "lazy" ausgewertet werden. Dagegen ist reduce ist ein terminaler Operator, der "eager" ausgewertet wird. Dabei ist wichtig zu verstehen, ...
One of the conveniences of Groovy is the ability to easily perform filtering and transformation operations on collections via Groovy’s closure support. Guava brings filtering and transformation on ...
There are many ways to do anything in Java, and there is no conclusive right way. Often, the right way is simply the way you know best. Imperative loops like the for loop are the most basic way to do ...