Lambda Expression
Lambda expression provide implementation of functional interface (interface that has only one abstract method). it's treated as function .
@FunctionalInterface
interface Button2{
public void onclick(String name, int i1);
}
@FunctionalInterfa...
sanjayprajapat.hashnode.dev1 min read