InterviewSolution
Saved Bookmarks
| 1. |
What is a Java Lambda Expression? |
|
Answer» Lamba expression is considered as the most significant feature of JAVA8. A Lambda expression PROVIDES functional programming, and that has simplified the CODE to a great extent. A lambda expression is fundamentally a function which can be created WITHOUT BELONGING to any class. |
|