Java 中 concat() 方法用於在現有字串末尾追加另一個字串,建立新的字串。具體用法包括:拼接多個字串。在現有字串中新增固定文字。在串聯中使用。
Java 中concat()
的用法
concat()
方法是Java 中String
類別的內建方法,用於在現有字串的末尾追加另一個字串。
語法:
<code class="java">public String concat(String str)</code>
參數:
str
- 要附加到現有字串的字串。 傳回值:
用法:
concat()
方法可以在下列場景中使用:
拼接多個字串:
<code class="java">String str1 = "Hello"; String str2 = "World"; String result = str1.concat(str2); //结果为 "HelloWorld"</code>
在現有字串中新增固定文字:
<code class="java">String str = "This is "; String addition = "a test"; String result = str.concat(addition); //结果为 "This is a test"</code>
在串連中使用:
<code class="java">String str1 = "John"; String str2 = "Doe"; String result = "Name: ".concat(str1).concat(" ").concat(str2); //结果为 "Name: John Doe"</code>
注意:
#concat()
方法會建立一個新字串。它不會修改現有字串。 str
為 null
,則 concat()
會產生一個 "null"
字串。 concat()
對不可變字串執行高效率的字串連線。 以上是java中concat的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!