網頁

2013年9月9日 星期一

Ch1_11 文字串接符號(+)

文字串接跟加號是一樣的,它可以讓字串與字串或數字串接在一起,與數字串接時,會先將數字自動轉變成文字後再串接。


範例程式
  • Ch1_11 .java

package chapter;

public class Ch1_11 {
    public static void main(String[] args) {
        String str1 = "456";
        String str2 = str1 + 10;
        int i = 123;
        double d = 3.14;
        System.out.println("str1=" + str1);
        System.out.println("str2=" + str2);
        System.out.println("i+d=" + (i + d));
        System.out.println("i+\" \" +d=" + i + " " + d);
        // 左邊或右邊有字串的話那串接後會變成字串型態
        System.out.println("i=" + i + ",d=" + d);
    }

}

沒有留言:

張貼留言