當(dāng)前位置:首頁 > IT技術(shù) > 編程語言 > 正文

與Java的初遇——String與8種基本數(shù)據(jù)類型間的運(yùn)算
2022-04-25 22:53:06

String與8種基本數(shù)據(jù)類型間的運(yùn)算

  • String屬于引用數(shù)據(jù)類型

  • 聲明String類型變量時使用一對""

  • String可以和8種基本數(shù)據(jù)類型變量做運(yùn)算,且運(yùn)算只能是連接運(yùn)算:+

  • 運(yùn)算的結(jié)果仍然是String類型

//例
public class StringTest{
    public static void main(String[] args){
        String s1 = "Hello World!";
        System.out.println(s1);
        char c = 'a';
        int num = 10;
        String str = "hello";
        System.out.println(c + num + str);
        System.out.println(c + str + num);
        System.out.println(c + (num + str));
        System.out.println((c + num) + str);
        System.out.println(str + num + c);
    }
}
/*
輸出結(jié)果為:
Hello World!
107hello
ahello10
a10hello
107hello
hello10a
*/

本文摘自 :https://www.cnblogs.com/

開通會員,享受整站包年服務(wù)立即開通 >