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
- Lambda expressions must implement an interface that has exactly one method
- Lambda expressions must have an arrow, ->, that separates any paramaters from the body of the actual function
- 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