Java String() Constructor
Syntax
String() constructor from String has the following syntax.
public String()
Example
In the following code shows how to use String.String() constructor.
public class Main {
public static void main(String args[]) {
String s1 = new String();
System.out.println("String from java2s.com is"+s1);
//from w w w .j a v a 2 s. com
}
}
The code above generates the following result.