Java 中串联字符串的最佳方法。


Java 中串联字符串的最佳方法是 concat() 方法。

此方法将一个 String 追加到另一个 String 的末尾。该方法返回一个 String,其中包含传递到此方法的 String 的值,附加到用于调用此方法的 String 的末尾。

示例

实时演示

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

更新于:26-Feb-2020

147 次浏览

开启你的 职业生涯

通过完成课程并获得认证

开始
广告