Lambda expressions in Java 8

 Java  Comments Off on Lambda expressions in Java 8
Jul 162015
 

A lambda expression can be defined as a concise representation of an anonymous function that can be passed around: it doesn’t have a name, but it has a list of parameters, a body, a return type, and also possibly a list of exceptions that can be thrown.
Continue reading »