mvmoure.com

  • Lambda expressions in Java

    This post is about using lambda expressions in Java. Lambda expressions are functions without a name that are commonly used in the functional programming style, specially to do iterations and filtering of lists. The way to define a lambda expression type is to define an interface with a single abstract (not defined) method: Then another…