Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

C/C++

Lambda Expressions in Java 8



Related Reading


More Insights




Reulison

In this course we will learn what lambda expressions are and how to apply them in C # and Java languages, reducing the amount of code to perform common tasks. Lambda Expressions are present for some time without day-to-day developers of some languages. They are extremely useful tools in various situations, especially in the simplicity of creation in creating quick functions within the code. In this course, we'll look at what Lambda Expressions are like and how to use them in two programming languages: C # .NET and Java.
http://www.devmedia.com.br/...

ram_ramesh

Looking for some basics on Lambda, ended up here, nice analysis.

dhruvpuri

Nice Article. Here is another simplified tutorial on lambda expressions in java 8 - http://www.javabrahman.com/...

YangL111

Lambda is great, but Java is still cumbersome. I made a library to make lambda more useful:

https://github.com/wapatesh...

Have a look!

blackanchorage

Is there a mistake in the Conclusion? Instead of "Comparator.compare(String::length)", I think it should be "Comparator.comparingInt(String::length)".

VasumathyJ150

This is the most comprehensive article on lambda expressions I have come across. Thank you for helping me to make sense of this new feature in Java 8

Andrew Binstock

We've covered Groovy several times and it's a language that I personally like and use. While it does have more-flexible closures than Java, its performance remains an issue.

gr8ful2u2

Excited about Java 8? Switch to Groovy, it has better closures and much more, now.

vancan1ty

This article was enlightening.

BKuykendall

This is a really awesome analysis of the new features!

I'm really excited about lamda expressions in Java 8.