In Java 8, methods can be created as Lambda expressions and can be passed by reference (with a little work under the hood). There are plenty of examples online with lambdas being created and used with methods, but no examples of how to make a method taking a lambda as a parameter. What is the syntax for that?
MyClass.method((a, b) -> a + b);
class MyClass{
//How do I define this method?
static int method(Lambda l) {
return l(5, 10);
}
}
Lambdas are purely a call-site construct: the recipient of the lambda does not need to know that a Lambda is involved, instead it accepts an Interface with the appropriate method.
In other words, you define or use a functional interface (i.e. an interface with a single method) that accepts and returns exactly what you want.
Since Java 8 there is a set of commonly-used interface types in
java.util.function.For this specific use case there’s
java.util.function.IntBinaryOperatorwith a singleint applyAsInt(int left, int right)method, so you could write yourmethodlike this:But you can just as well define your own interface and use it like this:
Then call the method with a lambda as parameter:
Using your own interface has the advantage that you can have names that more clearly indicate the intent.