This site is retired and is no longer updated since November 2021. Please visit our new website at https://www.teamscode.org for up-to-date information!
Operator Precedence


Just like how in math there is an order of operations, in programming, certain operators take precedence over others. With regards to simple arithmetic operators, you all should be familiar with PEMDAS. The same rules apply to programming, with the addition of the modulo % operator, which is grouped together with multiplication and division.

However, in programming, there are other operators as well. Assignment operators, relational operators, and many other symbols come into play, making it sometimes hard to follow what’s happening in a line of code. Here is a chart that helps with this:

Operators Precedence
postfix expr++ expr--
unary ++expr --expr !
multiplicative * / %
additive + -
relational < > <= >=
equality == !=
logical AND &&
logical OR ||
assignment = += -= *= /= %=

Everything you need to know and more is included in this chart. However, do not feel the need to memorize it. First of all, if you take a look at some of the things that we have learned, a lot of it makes sense. With enough practice on your own time, you will eventually start to naturally know which operators come first. And secondly, many people simply use parentheses to clear things up when they are not sure which operation comes first.

Going into something more specific, we are now going to cover precedence when using the + sign with strings. This is a very simple topic but worth going over once. Take a look at the following line of code:

	System.out.println("2 + 3 is equal to " + 2 + 3);

You might at first think the output produced would be “2 + 3 is equal to 5”, as desired. However, the thing to note with strings is that the moment you have a string and another data type being added together with the + symbol, the other data type is immediately converted to a string. Therefore, in the example above, instead of printing “2 + 3 is equal to 5”, the 2 is first concatenated to the “2 + 3 is equal to ” and then the 3 as well, which leads to the output of “2 + 3 is equal to 23”. If you had the statement the other way around however, things would be different:

	System.out.println(2 + 3 + " is equal to 2 + 3");

	// Prints "5 is equal to 2 + 3"

In this case, going from left to right, the 2 and 3 are added together first, and then the result is added to the following string and converted to a string itself. Note that if you had code like this:

	System.out.println("5 - 2 is equal to " + 5 - 2);

	// Throws error

An error is thrown because of the minus sign. At first, the 5 is concatenated to the string because of the + sign. However, it then encounters a minus sign. How do you subtract the number 2 from a string? You can’t, and therefore an error is thrown. Of course, there are easy workarounds to all of these scenarios. The best way is to simply use parentheses.

	System.out.println("5 - 2 is equal to " + (5 - 2));

	// Prints "5 - 2 is equal to 3"

Lesson Quiz

1. What is the output to the console?

	System.out.println(9 - 2 + "" + 4 + 1);
a. 75
b. 741
c. Error

2. What is the output to the console?

	System.out.println("Hi" + 3 - 2);
a. Hi32
b. Hi1
c. Error

3. What is the output to the console?

	System.out.println(true || false && false);
a. true
b. false
c. Error

4. What is the output to the console?

	System.out.println("True or false: " + true || false);
a. true
b. false
c. Error

Written by Alan Bi

Notice any mistakes? Please email us at learn@teamscode.com so that we can fix any inaccuracies.