View Single Post
Old Sep 29th, 2007, 4:53 PM   #9
titaniumdecoy
Expert Programmer
 
titaniumdecoy's Avatar
 
Join Date: Nov 2005
Posts: 836
Rep Power: 3 titaniumdecoy is on a distinguished road
Send a message via AIM to titaniumdecoy
My point, DaWei, was that the println() method has no effect on how the + operator is treated as the OP suggested in his last post, as this code demonstrates.

Object a = 1 + 13;
Object b = "here:" + 1 + 13;

System.out.println(a);
System.out.println(b);
titaniumdecoy is offline   Reply With Quote