Java String concat() 方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程