java tutorial - Java Strings toString() method - java programming - learn java - java basics - java for beginners

Learn Java - Java tutorial - Java strings to string - Java examples - Java programs
Description
The toString () method — method in the Java method converts and returns a string.
Syntax
Syntax method:
public String toString()
click below button to copy the code. By - java tutorial - team
Options
Detailed information about the parameters:
- no.
Return value
- In Java, toString () returns the string itself.
Sample Code
import java.io.*;
public class Test {
public static void main (String args []) {
String Str = new String ("Welcome to wikitechy.com");
System.out.print ("Return Value:");
System.out.println (Str.toString ());
}
}
click below button to copy the code. By - java tutorial - team
Output
Return Value:Welcome to wikitechy.com