【Java学习笔记】Java中关于tostring方法的误操作

时间:2023-02-25 16:48:31

作者:gnuhpc
出处:http://www.cnblogs.com/gnuhpc/

public class GotchaString {
    public static void main(String arg[]) {
        System.out.println("string + twenty + thirty: " + 20 + 30);
        System.out.println("string + (twenty + thirty): " + (20 + 30));
        System.out.println(20 + 30 + " twenty + thirty + string");
        System.out.println(20 + "" + 30 + " twenty + string + thirty + string");
    }
}

第一个是2030

第二个是50

第三个是50

第四个是2030

所以要是第一个是数字的话,中间可以加上一个空string进行明示。

 

作者:gnuhpc
出处:http://www.cnblogs.com/gnuhpc/