Java String concat()方法
描述
此方法追加一個字符串到另一個字符串的末尾。返回一個字符串,在以追加到用於調用該方法的字符串末尾的方法傳遞字符串的值。
語法
此方法定義的語法如下:
public String concat(String s)
參數
這裡是參數的細節:
-
s -- 這個字符串是串連到結尾的那個字符串。
返回值:
-
此方法返回一個表示的後跟字符串參數的字符串,是此對象的字符拚接字符串。
例子:
public class Test { public static void main(String args[]) { String s = "Strings are immutable"; s = s.concat(" all the time"); System.out.println(s); } }
這將產生以下結果:
Strings are immutable all the time