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:

enter image description here


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -