如何使用 Java 拼接两个字符串?


可以使用 concat() 方法拼接两个字符串。

示例

现场演示

public class ConcatinatedStrings {
   public static void main(String args[]) {
     
      String str1 = new String("Tutorials");
      String str2 = new String( "Point");
      String res = str1.concat(str2);
      System.out.println(res);
   }
}

输出

TutorialsPoint

更新于: 19-Feb-2020

264 次浏览

开启你的 职业 生涯

通过完成课程获得认证

开始
广告