//如果表達式以一個字元串起頭,那麼後續所有操作數必須是字元串類型 //thinking in java 書中p53 3.13 字元串操作符+和+= import static net.mindview.util.Print.*;public class StringOperators { publ ...
//如果表達式以一個字元串起頭,那麼後續所有操作數必須是字元串類型
//thinking in java 書中p53 3.13 字元串操作符+和+=
import static net.mindview.util.Print.*;
public class StringOperators {
public static void main(String []args){
int x=0,y=1,z=2;
String s="x,y,z";
print(s+x+y+z);
print(x+""+s);
s+="(summed)=";
print(s+(x+y+z));
print(""+x);
}
}
運行結果:
x,y,z012
0x,y,z
x,y,z(summed)=3
0