1. 程式人生 > >列印輸出語句:System.out.println("內容"+i+1+"內容");與System.out.println("內容"+(i+1)+"內容");的區別

列印輸出語句:System.out.println("內容"+i+1+"內容");與System.out.println("內容"+(i+1)+"內容");的區別

連線符和 “+”運算子區別

測試語句:

package com.it.test;


public class Test {
    public static void main(String[] args) {
        int i=3;
        System.out.println("abc"+i+1+"def");
        System.out.println("abc"+(i+1)+"def");
    }

}

結果:

abc31def
abc4def