Método StringJoiner length() en Java

La longitud() de StringJoiner se usa para averiguar la longitud de StringJoiner en caracteres. Devuelve la longitud de la representación String de este StringJoiner. Tenga en cuenta que si no se ha llamado a ningún método de adición, se devolverá la longitud de la representación de string (ya sea prefijo + sufijo o valor vacío). El valor debe ser equivalente a toString().length().
Sintaxis:  

public int length()

Devoluciones: Este método devuelve la longitud del valor actual de StringJoiner
A continuación, los programas ilustran el método length():
Ejemplo 1: Para demostrar length() con el delimitador ” “

Java

// Java program to demonstrate
// length() method of StringJoiner
 
import java.util.StringJoiner;
 
public class GFG {
    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("StringJoiner: "
                           + str.toString());
 
        // Printing the length of str
        // using length() method
        System.out.println(str.length());
    }
}
Producción: 

StringJoiner: Geeks for Geeks
15

 

Ejemplo 2: Para demostrar longitud() con delimitador «, «

Java

// Java program to demonstrate
// length() method of StringJoiner
 
import java.util.StringJoiner;
 
public class GFG {
    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");
        str.add("A");
        str.add("Computer");
        str.add("Portal");
 
        // Print the StringJoiner
        System.out.println("StringJoiner: "
                           + str.toString());
 
        // Printing the length of str
        // using length() method
        System.out.println(str.length());
    }
}
Producción: 

StringJoiner: Geeks, for, Geeks, A, Computer, Portal
38

 

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 *