concat 在 Java 中的用法
concat() 方法是 String 类中的一个方法,用于连接两个字符串。它返回一个新的字符串,该字符串是两个原始字符串连接的结果。
语法
<code class="java">public String concat(String str)</code>
参数
str
- 要连接的字符串返回值
连接后的新字符串
使用方法
concat() 方法用于将两个字符串连接成一个新的字符串。它可以以以下方式使用:
<code class="java">String str1 = "Hello"; String str2 = "World"; String newStr = str1.concat(str2); System.out.println(newStr); // 输出:HelloWorld</code>
在上面的示例中,str1
和 str2
被连接成一个新的字符串 newStr
,该字符串的值为 "HelloWorld"。
注意事项
str
参数为 null,则会生成一个 "null" 字符串。以上是concat在java中的用法的详细内容。更多信息请关注PHP中文网其他相关文章!