Skip to content

Instantly share code, notes, and snippets.

@CesarNog
Created March 7, 2013 13:13
Show Gist options
  • Save CesarNog/5107968 to your computer and use it in GitHub Desktop.
Save CesarNog/5107968 to your computer and use it in GitHub Desktop.
Calculator is an example of lambda expressions that take more than one formal parameter.
public class Calculator {
interface IntegerMath {
int operation(int a, int b);
}
public int operateBinary(int a, int b, IntegerMath op) {
return op.operation(a, b);
}
public static void main(String... args) {
Calculator myApp = new Calculator();
IntegerMath addition = (a, b) -> a + b;
IntegerMath subtraction = (a, b) -> a - b;
System.out.println("40 + 2 = " +
myApp.operateBinary(40, 2, addition));
System.out.println("20 - 10 = " +
myApp.operateBinary(20, 10, subtraction));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment