在Java 當中,有很多字串串接的方法最簡單的就是直接用+ 串起來如: String S1 = "A" + "B"; 也可以用concat 方法如: String S2 = S1.concat("C");
確定! 回上一頁