Java中连接字符串的最佳方法


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

此方法将一个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

更新于: 2020年2月26日

147次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告