Closure in Java
A closure is an inner function that has access to the outer function even after the scope of outer function.This is a common programming concept in JavaScript, but we can achieve the same thing in java with the advent of JDK8 and functional programming. here is a small java program which explains the closure concept… Continue reading Closure in Java