Java Closures and Lambda

  • 3h 58m
  • Robert Fischer
  • Apress
  • 2015

Java Closures and Lambda introduces you to significant new changes to the Java language coming out of what is termed Project Lambda. These new changes make their debut in Java 8, and their highlight is the long-awaited support for lambda expressions in the Java language. You’ll learn to write lambda expressions and use them to create functional interfaces and default methods for evolving APIs, among many other uses.

The changes in Java 8 are significant. Syntax and usage of the language are changed considerably with the introduction of closures and lambda expressions. This book takes you through these important changes from introduction to mastery. Through a set of clear examples, you’ll learn to refactor existing code to take advantage of the new language features. You’ll learn what those features can do for you, and when they are best applied. You’ll learn to design and write new code having these important new features in mind from the very beginning.

  • Clearly explains the fantastic benefits resulting from Project Lambda
  • Explains the syntax and IDE support for the new features
  • Shows how to streamline your code by bringing some of the benefits of functional programming to the Java language
  • Illustrates parallelism in closures through Stream and Spliterator objects
  • Explains API evolution by adding methods to existing interfaces without breaking existing interface implementations, a technique addressing potential multiple inheritance issues

What you’ll learn

  • Encapsulate key bits of logic into anonymous functions without the need for anonymous classes
  • Define closures to be used as generators of comparison functions
  • Define map, filter, and reduce functions that are useful in working with lists and other collections
  • Trap and handle exceptions involving lambdas and closures, including the passing of exception-type parameters
  • Anticipate and provide for concurrency so that your code successfully scales across multiple CPU cores
  • Refactor existing code to take advantage of newly-possible closures and lambda expressions

Who this book is for

This book is aimed at Java developers interested in keeping up with the latest developments in the language. The book is of particular interest to those wanting to produce shorter and more readable code by taking advantage of language enhancements coming out of Project Lambda.

About the Author

Robert Fischer is a software developer, open source software contributor, technical commentator, and engineering manager. He has consulted, written, and spoken broadly on technical topics including concurrency, JVM bytecode, Groovy, Grails, and Gradle, and functional programming. Robert has a Masters of Divinity degree from Duke University, works as the VP of Engineering at Webonise Lab.

In this Book

  • Java 8: It's a Whole New Java
  • Understanding Lambdas in Java 8
  • Lambda's Domain: Collections, Maps, and Streams
  • I/O with Lambdas
  • Data Access with Lambdas
  • Lambda Concurrency
  • Lambdas and Legacy Code
  • Lambdas in Java Bytecode

YOU MIGHT ALSO LIKE