Showing posts with label strings. Show all posts
Showing posts with label strings. Show all posts

January 5, 2010

Concatenation to strings in Java


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


results in

12
12
3