java - What does "Higher Precedence" mean? -
according wiki precedence level of , higher or.
i wondering, if have clause stated a || b && c
how should computed first? (a||b) or (b && c)?
and has higher precedence on or in java. (b && c) should computed before (a||b) in expression a || b && c
check complete list:
http://docs.oracle.com/javase/tutorial/java/nutsandbolts/operators.html
snapshot taken link:

Comments
Post a Comment