What is a lambda expression?
Posted: Tue Oct 09, 2012 2:46 am
According to:
http://www.lambdafaq.org/what-is-a-lambda-expression/
http://www.lambdafaq.org/what-is-a-lambda-expression/
I'm someone who does not get 'all excited' over object orientation. It's not that I have anything against it, I just don't have a lot for it. I would classify it in the same category as scrum or agile, more sizzle than steak. Could the same thing be said for lambda expressions, or am I missing something?In mathematics and computing generally, a lambda expression is a function: for some or all combinations of input values it specifies an output value. Lambda expressions in Java introduce the idea of functions into the language. In conventional Java terms lambdas can be understood as a kind of method with a more compact syntax that allows declarations to omit modifiers, the method identifier, the return type, and in some cases the parameter types.