如何在Java的Lambda表达式中编写条件表达式?

条件运算符是用来制造条件表达式中的Java。它也被称为三元运算符,因为它具有三个操作数,例如布尔条件 第一个表达式第二个表达式

我们还可以在以下程序中的lambda表达式中编写条件表达式。

示例

interface Algebra {
   int substraction(int a, int b);
}
public class ConditionalExpressionLambdaTest {
   public static void main(String args[]) {
      System.out.println("The value is: " + getAlgebra(false).substraction(20, 40));
      System.out.println("The value is: " + getAlgebra(true).substraction(40, 10));
   }
   static Algebra getAlgebra(boolean reverse) {
      Algebra alg = reverse ? (a, b) -> a - b : (a, b) -> b - a; // conditional expression 
      return alg;
   }
}

输出结果

The value is: 20
The value is: 30