In Java8 the most important inclusion is the lambda, It is important because using lambda we can manipulate function/method like data member , also we can pass or returns a function from another function(using java Functional interface). Prior...
Home » Archives for October 2017
Java8:Deep dive to Lambda as a Closure
in
java interview questions,
java8,
java8 feature,
java8feature
- on October 31, 2017
- No comments
Function Curry in Java8
in
java 8 stream,
java8,
java8 feature,
java8feature
- on October 16, 2017
- No comments

One of the important features of a functional program is Function Currying.As we know java8 introduce lambda which brings some functional nature in java programming. We are blessed that by an intelligent use of Lambda we can create Function currying...