System.out.println(1 + 2 + "3");

Output: 33

System.out.println("1" + 2 + 3);

Output: 123

link|improve this question
Somewhat related question here for .NET developers: stackoverflow.com/questions/517695 – Brian Rasmussen Mar 2 '10 at 8:53
feedback

This question has an open bounty worth +50 reputation from Adel ending in 5 days.

One or more of the answers is exemplary and worthy of an additional bounty.

NO MORE ANSWER, IS A GIFTEH

5 Answers

up vote 24 down vote accepted

Well, it's a thing called order of operations.

1 + 2 is calculated to equal 3 and then the string "3" is appended to it converting the first 3 to a string and printing "33".

In your second instance, "1" is already a string so adding numbers will convert them to strings to match, so appending "2" and then appending "3" and printing "123".

P.S. Strings take precedence because they have a higher casting priority than integers do, therefore it will convert integers to strings but not strings to integers, as with the second example.

link|improve this answer
+1 for "...order of operations." – Sri Kumar Mar 2 '10 at 8:48
+1 Ewww. Implicit casting in C#. I thought C# was supposed to be a purely statically typed language.</sarcasm> – Evan Plaice Feb 3 at 22:02
feedback

The first statement adds 1 and 2 (since both are Integers) and then converts them to a string and appends the string "3".

The second statement has a string "1" and converts all following arguments to strings as well. So you get 123.

link|improve this answer
feedback

In the case of 1 + 2 + "3"

Addition of 1 and 2 is performed first next 3 is concatenated to 3.

In "1" + 2 + 3

1 is concatenated to 2 and the result ("12") is concatenated to 3

The thing to remember is:

If either of the operands to + is a string + acts as concatenation else it works as addition.

link|improve this answer
feedback

In case of first , it does 1+2 , then it does the string concatenation operation , So that it gives you 33.

In case of second statement it is doing string concatenation for all operand , since first

operand is string. So that it gives you 123

link|improve this answer
feedback

I'm not a java expert but I suppose expressions are read from left to right here

In the first case it first compute 1 + 3 which gives 3 then 3 + "3" which convert the first 3 to a string and gives "33"

In the second case it starts by "1" + 2 which gives "12" and then "12" + 3 = "123"

This is a side effect of having an operator + which concatenates 2 strings and an other which adds 2 numbers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.