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);