📍매개변수를 받아서, 그 매개변수로 같은 메서드를 호출해야할 때public static void main(String[] args) { BinaryOperator add1 = (x, y) -> add(x, y); BinaryOperator add2 = (x, y) -> add(x, y); Integer result1 = add1.apply(1, 2); System.out.println("result1 = " + result1); Integer result2 = add2.apply(1, 2); System.out.println("result2 = " + result2); } static in..