As we know, In java-8 we can store function/method in variable. by using following way.
@FunctionalInterface
public interface MyInterface {
public string getValue(int val1, int val2);
}
public class MyClass {
static String someFun(int val1, int val2) {
return ""+(val1+val2)
}
static BiFunction<Integer, Integer, String> testParamFun = (a,b) -> ""+(a+b);
public static void main(String[] args){
MyInterface intr = MyClass::someFun;
System.out.println(int.getValue(2,4)); // outpur will be "6"
/* i want this, but it give me compile time error?
I want to store that function in variable like i was doing in above case. */
MyInterface inter = MyClass::testParamFun;
System.out.println(inter.getValue(4,5)); // it gives me error.
// then i tried this
System.out.println(inter.apply(4,5)); // i got error again.
}
}
My question is, how can I store BiDirection in variable type MyInterface
int.