Java String concat() 方法

返回 Java Strings 类


concat() 方法将一个字符串附加到另一个字符串的末尾。 该方法返回一个字符串,该字符串的的末尾为传递给该方法的字符串对象的值。

语法

public String concat(String s)

参数

s - 连接到此字符串末尾的字符串。

返回值

返回连接后的新字符串

示例

public class Main {

   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

返回 Java Strings 类

查看笔记

扫码一下
查看教程更方便