| Author |
System.out.println Strange output
|
Supun Lakshan Dissanayake
Ranch Hand
Joined: Oct 26, 2012
Posts: 51
|
|
When i compile and run Example.java the output was ba5
I need to know why the output was ba5 ??
[ my imagination = according to the sequence of line 11 output should be ab5 ]
Regards!!!
|
Try and Try one day you can FLY.
|
 |
fred rosenberger
lowercase baba
Bartender
Joined: Oct 02, 2003
Posts: 9947
|
|
Step through the code.
On line 11, you start to build your string, which has to complete before you can do the printing from this line.
you now step into the DoSomething() method. on line 3, you say "print the string "b"". That completes, putting the 'b' on the console.
you then return the 5.
that gets concatenated to the 'a', giving you the string "a5", which is then printed to the console, behind the 'b'.
|
Never ascribe to malice that which can be adequately explained by stupidity.
|
 |
Kemal Sokolovic
Bartender
Joined: Jun 19, 2010
Posts: 792
|
|
|
This is the result of operator precedence (priority). If no parentheses are used in complex expressions, operators with higher precedence are executed before those of a lower precedence. The method call operator has the highest precedence (along with indexing, postfix increment and decrement operator) so it's executed first. Since the method is invoked first, 'b' character is sent to the output and value 5 is returned from method. After that 'a' is concatenated to '5' and sent to the output so you get the result "ba5".
|
The quieter you are, the more you are able to hear.
|
 |
Supun Lakshan Dissanayake
Ranch Hand
Joined: Oct 26, 2012
Posts: 51
|
|
THANKS GUYS!!!
|
 |
 |
|
|
subject: System.out.println Strange output
|
|
|