其他分享
首页 > 其他分享> > 浅学之字符串连接符

浅学之字符串连接符

作者:互联网

public class Demo04 {
    public static void main(String[] args) {
        int a = 10;
        int b = 20;
        //字符串连接符  +
        System.out.println(""+a+b);//加号前面有字符串 则结果为字符串
        System.out.println(a+b+"");//加号后面有字符串 则结果正常运算
        
    }
}

标签:int,浅学,System,字符串,连接符,public,out
来源: https://www.cnblogs.com/speak-please/p/16389857.html