This series includes an introductory video to Java SE 8 Lambda, tutorials, and other articles.
Release Date: 03-AUG-2013
Created by: Michael W. Williams
This video describes how easy it is to work with Lambda in Java SE 8.
Duration: 1 minutes
This webcast provides an introduction to the forthcoming lambda expressions syntax added to Java 8. Learn how lambda expressions replace anonymous inner classes. In addition, see how lambda expressions might change your thinking about how you code in Java. Finally, the webcast concludes with examples of how lambda expressions change the Collections API.
Lambda expressions are a new and important feature included in Java SE 8. They provide a clear and concise way to represent one method interface using an expression. Lambda expressions also improve the Collection libraries making it easier to iterate through, filter, and extract data from a Collection. In addition, new concurrency features improve performance in multicore environments.
Collection
This Oracle by Example (OBE) provides an introduction to lambda expressions included in Java SE 8. An introduction to anonymous inner functions is provided, followed by a discussions of functional interfaces and the new lambda syntax. Then, examples of common usage patterns before and after lambda expressions are shown.
The next section reviews a common search use case and how Java code can be improved with the inclusion of lambda expressions. In addition, some of the common functional interfaces, Predicate and Function, provided in java.util.function are shown in action.
Predicate
Function
java.util.function
The OBE finishes up with a review of how the Java collection has been updated with lambda expressions.
Duration: 60 minutes