Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Learning Java Lambdas

You're reading from  Learning Java Lambdas

Product type Book
Published in Mar 2017
Publisher
ISBN-13 9781787282087
Pages 114 pages
Edition 1st Edition
Languages
Author (1):
Toby Weston Toby Weston
Profile icon Toby Weston
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.

Lastly, we looked...

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 €14.99/month. Cancel anytime