| Return | Method | Summary |
|---|---|---|
| boolean | isEmpty() | Returns true if, and only if, length() is 0. |
| int | length() | Returns the length of this string. |
public class Main {
public static void main(String[] argv) {
String str = "";
System.out.println(str.isEmpty());
System.out.println(str.length());
str = "java2s.com";
System.out.println(str.isEmpty());
System.out.println(str.length());
}
}
The output:
true
0
false
10java2s.com | | Contact Us | Privacy Policy |
| Copyright 2009 - 12 Demo Source and Support. All rights reserved. |
| All other trademarks are property of their respective owners. |