String toString() es el método incorporado de java.lang que devuelve una string. Así que aquí no se realiza ninguna conversión real. Dado que el método toString() simplemente devuelve la string actual sin ningún cambio, no es necesario llamar a la string explícitamente, generalmente se llama implícitamente.
Sintaxis:
public String toString()
Parámetro: El método no acepta ningún parámetro.
Valor devuelto: este método devuelve la propia string.
Ejemplos:
Input: String("geeksforgeeks") Output: geeksforgeeks
Los siguientes programas ilustran el método Java.lang.String.toString():
Programa 1:
// Java program to illustrate the // Java.lang.String.toString() method import java.io.*; public class Geeks { public static void main(String args[]) { String Strobj = new String("Welcome to the world of geeks."); System.out.print("Output String Value :"); System.out.println(Strobj.toString()); String Strobj2 = new String("Let's make it simple for you."); System.out.print("Output String Value :"); System.out.println(Strobj2.toString()); } }
Producción:
Output String Value :Welcome to the world of geeks. Output String Value :Let's make it simple for you.
Programa 2:
// Java program to illustrate the // Java.lang.String.toString() method import java.io.*; public class Geeks { public static void main(String args[]) { String Strobj = new String("THank You"); System.out.print("Output : "); System.out.println(Strobj.toString()); } }
Producción:
Output : THank You
Publicación traducida automáticamente
Artículo escrito por ankita_chowrasia y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA