Created
March 7, 2013 13:13
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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