Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Learning Java Lambdas

You're reading from   Learning Java Lambdas An in-depth look at one of the most important features of modern Java

Arrow left icon
Product type Paperback
Published in Mar 2017
Publisher
ISBN-13 9781787282087
Length 114 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Toby Weston Toby Weston
Author Profile Icon Toby Weston
Toby Weston
Arrow right icon
View More author details
Toc

Summary

We saw how using an anonymous class will create a new instance and call it's constructor with invokespecial.

We saw anonymous classes that close over variables have an extra argument on their constructor to capture that variable.

And we saw how Java lambdas use the invokedynamic instruction to defer binding of the types and that a special lambda$ method handle is used to actually represent the lambda. This method handle has no arguments in this case and is invoked using invokestatic making it a genuine function.

The lambda was created by the LambdaMetafactory class which itself was the target of the invokedynamic call.

When a lambda has arguments, we saw how the LambdaMetafactory describes the argument to be passed into the lambda. The invokestatic opcode is used to execute the lambda like before. But we also had a look at a method reference used in-lieu of a lambda. In this case, no lambda$ method handle was created and invokevirtual was used to call the method directly...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime