Lambda Expressions

Definition

Lambda expressions are used to simplify anonymous classes in java by turning longer anonymous classes into concise one line expressions.

Attributes of Lambda Expressions

  1. Lambda expressions must implement an interface that has exactly one method
  2. Lambda expressions must have an arrow, ->, that separates any paramaters from the body of the actual function
  3. Fuctions created when using lambda expressions don't belong to any specific class

Lambda Expression Example

More Information on Lambda Expressions

Visit this page to learn more about Lambda Expressions