I have qeustions regarding java syntax please...
Is this syntax is considered/read as the standard 'if' selection?
How it's been generated in jvm?
If I want to check either the boolean value is true or false, can it be read as staadard 'if' (e.g: if (a > b) ...)
Thank you
Is this syntax is considered/read as the standard 'if' selection?
Code:
MutableBigInteger t = !uOdd ? v : u;
If I want to check either the boolean value is true or false, can it be read as staadard 'if' (e.g: if (a > b) ...)
Thank you
Comment