aspose file tools
The moose likes Beginning Java and the fly likes System.out.println Strange output Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "System.out.println Strange output" Watch "System.out.println Strange output" New topic
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
    
    6

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
    
    2

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!!!
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: System.out.println Strange output
 
Similar Threads
Overloading
String addition
synchronized on System.out.toString()
Conversion toArray and asList problem
Using Lists and converting them to arrays problem