String.length() has the following syntax.
public int length()
In the following code shows how to use String.length() method.
public class Main { public static void main(String[] argv) { String str = ""; System.out.println(str.length()); str = "demo2s.com"; System.out.println(str.length()); } }
The output: