Dear Java guru \'s!
Can you, please, explain me, why String concatenation does not work properly in Java when concatenating 2 results of ternary operators?
"B" + str == null ? "C", String concatenation evaliated first before the conditional expression evaluated
"B" + str == null ? "C"