Método StringJoiner add() en Java

El add(CharSequence newElement) de StringJoiner agrega una copia del valor de CharSequence dado como el siguiente elemento del valor de StringJoiner. Si newElement es nulo, entonces se agrega «null».
Sintaxis: 

public StringJoiner add(CharSequence newElement)

Parámetros: este método toma un parámetro obligatorio newElement que es el elemento que se agregará.
Devoluciones: Este método devuelve una referencia a este StringJoiner
A continuación, los programas ilustran el método add():
Ejemplo 1: Para demostrar add() con el delimitador ” ” 

Java

// Java program to demonstrate
// add() method of StringJoiner
 
import java.util.StringJoiner;
 
public class GFG1 {
    public static void main(String[] args)
    {
 
        // Creating StringJoiner with delimiter " "
        StringJoiner str = new StringJoiner(" ");
 
        // Adding elements in the StringJoiner
        str.add("Geeks");
        str.add("for");
        str.add("Geeks");
 
        // Print the StringJoiner
        System.out.println(str.toString());
    }
}
Producción: 

Geeks for Geeks

 

Ejemplo 2: Para demostrar add() con delimitador “,”

Java

// Java program to demonstrate
// add() method of StringJoiner
 
import java.util.StringJoiner;
 
public class GFG1 {
    public static void main(String[] args)
    {
 
        // Creating StringJoiner with delimiter ","
        StringJoiner str = new StringJoiner(",");
 
        // Adding elements in the StringJoiner
        str.add("Geeks");
        str.add("for");
        str.add("Geeks");
 
        // Print the StringJoiner
        System.out.println(str.toString());
    }
}
Producción: 

Geeks,for,Geeks

 

Publicación traducida automáticamente

Artículo escrito por Code_r y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *