O Classe Java String concat() método combina a string especificada no final desta string . Ele retorna uma string combinada. É como anexar outra string.
Assinatura
A assinatura do método string concat() é fornecida abaixo:
public String concat(String anotherString)
Parâmetro
outraString : outra string, ou seja, a ser combinada no final desta string.
mesclagem de PD
Devoluções
sequência combinada
Implementação interna
public String concat(String str) { int otherLen = str.length(); if (otherLen == 0) { return this; } int len = value.length; char buf[] = Arrays.copyOf(value, len + otherLen); str.getChars(buf, len); return new String(buf, true); }
Exemplo de método Java String concat()
Nome do arquivo: ConcatExample.java
public class ConcatExample{ public static void main(String args[]){ String s1='java string'; // The string s1 does not get changed, even though it is invoking the method // concat(), as it is immutable. Therefore, the explicit assignment is required here. s1.concat('is immutable'); System.out.println(s1); s1=s1.concat(' is immutable so assign it explicitly'); System.out.println(s1); }}Teste agora
Saída:
java string java string is immutable so assign it explicitly
Java String concat() Método Exemplo 2
Vamos ver um exemplo onde concatenamos vários objetos string.
java enquanto condição
Nome do arquivo: ConcatExample2.java
public class ConcatExample2 { public static void main(String[] args) { String str1 = 'Hello'; String str2 = 'Javatpoint'; String str3 = 'Reader'; // Concatenating one string String str4 = str1.concat(str2); System.out.println(str4); // Concatenating multiple strings String str5 = str1.concat(str2).concat(str3); System.out.println(str5); } }
Saída:
HelloJavatpoint HelloJavatpointReader
Java String concat() Método Exemplo 3
Vamos ver um exemplo onde concatenamos espaços e caracteres especiais ao objeto string. Isso é feito usando o encadeamento do método concat().
Nome do arquivo: ConcatExample3.java
variável java variável
public class ConcatExample3 { public static void main(String[] args) { String str1 = 'Hello'; String str2 = 'Javatpoint'; String str3 = 'Reader'; // Concatenating Space among strings String str4 = str1.concat(' ').concat(str2).concat(' ').concat(str3); System.out.println(str4); // Concatenating Special Chars String str5 = str1.concat('!!!'); System.out.println(str5); String str6 = str1.concat('@').concat(str2); System.out.println(str6); } }
Saída:
Hello Javatpoint Reader Hello!!! [email�protected]
Java String concat() Método Exemplo 4
Até agora, vimos que o método concat() anexa a string no final da string que invoca o método. No entanto, podemos fazer uma solução alternativa para anexar a string no início de uma string usando o método concat().
Nome do arquivo: ConcatExample4.java
// A Java program that shows how to add // a string at the beginning of another string public class ConcatExample4 { // main method public static void main(String argvs[]) { String str = 'Country'; // we have added the string 'India is my' before the String str; // Also, observe that a string literal can also invoke the concat() method String s = 'India is my '.concat(str); // displaying the string System.out.println(s); } }
Saída:
India is my Country