Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ConditionalExpression:
ConditionalOrExpression
ConditionalOrExpression ? Expression : ConditionalExpression EXP00-J. Use the same type for the second and third operands in conditional expressions JLS 05

  • If the value of the first operand is true, then the second operand expression is chosen
  • If the value of the first operand is false, then the third operand expression is chosen

...