String() constructor from String has the following syntax.
public String()
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); } }
The code above generates the following result.