System.out.println(1 + 2 + "3");
Output: 33
System.out.println("1" + 2 + 3);
Output: 123
feedback
|
|||
|
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. | |||||
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. | |||
|
feedback
|
|
In the case of Addition of 1 and 2 is performed first next 3 is concatenated to 3. In 1 is concatenated to 2 and the result ("12") is concatenated to 3 The thing to remember is:
| ||||
|
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 | |||
|
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. | |||
|
feedback
|