Precedence meaning - the right that somebody/something has to come before somebody/something else because he/she/it is more important. definition comes when you google it.
Precedence in Java means the operators are applied and evaluated based on precedence. for example (+,-) has less procedure compared to (*,!). hence * & / are calculated first.
In case if you want to change this order, you can use parenthesis.
In Java the original common BODMAS Rule doesn't work instead precedence and associativity works. when precedence of is same like * and / then associativity works.
B – Brackets
O – Order of powers or roots,
D – Division
M – Multiplication
A – Addition
S – Subtraction.
The BODMAS rule state that mathematical operations need to be solved from left to right in the order of BODMAS.
Whenever you start working on solving operators problem, first check the operators who has highest precedence value and then start solving but if you encounter operators which has same precedence value than check the associativity rule then start solving.
Associativity tells the direction of the execution of operators. It can either be left to right or vice versa.
/ * -> Left to Right
+ - -> Left to Right
++, = -> Right to Left
int a = 7*5-34/2;
/* calculation
=35-34/2
=35-17
output =18 */
Top comments (0)