String與8種基本數(shù)據(jù)類型間的運(yùn)算
-
String屬于引用數(shù)據(jù)類型
-
聲明String類型變量時(shí)使用一對
""
-
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/