El java.util.Vector. toString() es un método incorporado de Vector que se utiliza para obtener una representación de string de los objetos de Vector en forma de una representación de string de entradas separadas por “,“. Entonces, básicamente, el método toString() se usa para convertir todos los elementos de Vector en String.
Sintaxis:
Vector.toString()
Parámetro: El método no toma ningún parámetro.
Valor devuelto: El método devuelve la representación de String que consiste en la representación de string de los elementos del Vector.
Los siguientes programas ilustran el funcionamiento del método java.util.Vector.toString():
Programa 1:
Java
// Java code to illustrate the toString() method import java.util.*; public class GFG { public static void main(String[] args) { // creating vector type object Vector<String> vector = new Vector<String>(); // Inserting elements into the table vector.add("Geeks"); vector.add("4"); vector.add("Geeks"); vector.add("Welcomes"); vector.add("You"); // Displaying the Vector System.out.println("Vector: " + vector); // Displaying the string representation System.out.println("The String representation is: " + vector.toString()); } }
Vector: [Geeks, 4, Geeks, Welcomes, You] The String representation is: [Geeks, 4, Geeks, Welcomes, You]
Programa 2:
Java
// Java code to illustrate the toString() method import java.util.*; public class GFG { public static void main(String[] args) { // Creating an empty Vector Vector<Integer> vector = new Vector<Integer>(); // Inserting elements into the table vector.add(10); vector.add(15); vector.add(20); vector.add(25); vector.add(30); // Displaying the Vector System.out.println("Initial Vector is: " + vector); // Displaying the string representation System.out.println("The String representation is: " + vector.toString()); } }
Initial Vector is: [10, 15, 20, 25, 30] The String representation is: [10, 15, 20, 25, 30]
Publicación traducida automáticamente
Artículo escrito por ankit15697 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA