length 与 isempty 相似, null不可以使用,报空指针异常,
new string() 分配了空间,只是没有存储内容
“”空串,length=0
public static void main(String []ar){ String a = null; String b = new String(); String c = ""; String d = "abcd"; //NullPointerException System.out.println(a.isEmpty()); System.out.println(a.length()); //true 0 System.out.println(b.isEmpty()); System.out.println(b.length()); //true 0 System.out.println(c.isEmpty()); System.out.println(c.length()); //false 4 System.out.println(d.isEmpty()); System.out.println(d.length()); }
转;
判断String是否为空的小技巧
博客分类:- //比较 方法一,大多数人都这么比较
- String param = config.getInitParameter("log-level");
- if (param != null && !"".equals(param)) {
- final Level level = Log.getLevel(param);
- if (level != null) Log.lookup("org.zkoss").setLevel(level);
- else log.error("Unknown log-level: "+param);
- }
- //比较 方法二,(而我研究的源码基本都这么比较)
- String param = config.getInitParameter("log-level");
- if (param != null && param.length() > 0) {
- final Level level = Log.getLevel(param);
- if (level != null) Log.lookup("org.zkoss").setLevel(level);
- else log.error("Unknown log-level: "+param);
- }
- // 下面我们看一下equals,length,isEmpty的源码
- //String中equals方法内部代码
- public boolean equals(Object anObject) {
- if (this == anObject) {
- return true;
- }
- if (anObject instanceof String) {
- String anotherString = (String)anObject;
- int n = count;
- if (n == anotherString.count) {
- char v1[] = value;
- char v2[] = anotherString.value;
- int i = offset;
- int j = anotherString.offset;
- while (n-- != 0) {
- if (v1[i++] != v2[j++])
- return false;
- }
- return true;
- }
- }
- return false;
- }
- //String.length()的源码
- /**
- * Returns the length of this string.
- * The length is equal to the number of <a href="Character.html#unicode">Unicode
- * code units</a> in the string.
- *
- * @return the length of the sequence of characters represented by this
- * object.
- */
- public int length() {
- return count;
- }
- //String.isEmpty的源码
- /**
- * Returns <tt>true</tt> if, and only if, {@link #length()} is <tt>0</tt>.
- *
- * @return <tt>true</tt> if {@link #length()} is <tt>0</tt>, otherwise
- * <tt>false</tt>
- *
- * @since 1.6
- */
- public boolean isEmpty() {
- return count == 0;
- }
仅从代码多少以及逻辑判断来看,length,isEmpty都非常简单,对于一般比较判断来说,
首先我猜测:length,isEmpty是相差无几的,equals方法就望尘莫及了,
下面做一个测试,证明我们的猜测
测试代码如下
- private static final String sunflower = "sunflower";
- private static final int COUNT= 1000000000;
- public static void main(String[] args) {
- try {
- Thread.sleep(2000);
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- System.out.println("开始计算...\n");
- Long begin = System.currentTimeMillis();
- for (int j = 0; j < COUNT; j++) {
- testEmptyByLength(sunflower);
- }
- calculateDuration("length test", begin);
- begin = System.currentTimeMillis();
- for (int j = 0; j < COUNT; j++) {
- testEmptyByEmpty(sunflower);
- }
- calculateDuration("empty test", begin);
- begin = System.currentTimeMillis();
- for (int j = 0; j < COUNT; j++) {
- testEmptyByEquals(sunflower);
- }
- calculateDuration("equals test", begin);
- }
- public static void calculateDuration(String method, long begin) {
- System.out.println(method + "\t:"
- + (System.currentTimeMillis() - begin) / 1000);
- }
- public static boolean testEmptyByLength(String str) {
- return str == null || str.length() < 1;
- }
- /**
- * empty方法是jdk1.6添加的方法,如果是早期版本不兼容
- *
- * @param str
- * @return
- */
- public static boolean testEmptyByEmpty(String str) {
- return str == null || str.isEmpty();
- }
- public static boolean testEmptyByEquals(String str) {
- return "".equals(str);
- }
输出结果:
开始计算(s)
length test:0
empty test:0
equlas test:8
结论:
String.isEmpty()方法是jdk1.6中添加的,其方法体和length()方法一样,从性能和兼容性,length()更好,
所以如果对字符串非严格判断是否为空,建议使用String.length>0判断,如果严格判断是否全部为" "字符,就要自己写或者用common lang StringUtils.isBlank了
isBlank方法代码补充:
- /**
- * <p>Checks if a String is whitespace, empty ("") or null.</p>
- *
- * <pre>
- * StringUtils.isBlank(null) = true
- * StringUtils.isBlank("") = true
- * StringUtils.isBlank(" ") = true
- * StringUtils.isBlank("bob") = false
- * StringUtils.isBlank(" bob ") = false
- * </pre>
- *
- * @param str the String to check, may be null
- * @return <code>true</code> if the String is null, empty or whitespace
- * @since 2.0
- */
- public static boolean isBlank(String str) {
- int strLen;
- if (str == null || (strLen = str.length()) == 0) {
- return true;
- }
- for (int i = 0; i < strLen; i++) {
- if ((Character.isWhitespace(str.charAt(i)) == false)) {
- return false;
- }
- }
- return true;
- }
注:本人不是性能主义者,而是追求更好的方法!!
相关推荐
但是,当我们使用StringUtils.isEmpty(page.getQuery())来判断query是否为空时,却出现了问题。问题的关键代码如下: if (StringUtils.isEmpty(page.getQuery())) { // 省略处理逻辑 } 问题的原因是StringUtils....
- 使用`String.isEmpty()`检查空字符串,而不是`== null`或`length() == 0`。 8. **比较操作**: - 使用`equals()`方法比较对象的平等性,而非`==`,除非比较的是基本类型。 - 对于数字比较,使用`==`或`!=`比较...
- 使用`String.isEmpty()`检查字符串是否为空,而非`== null`或`length() == 0`。 10. **并发编程**: - 使用`java.util.concurrent`包提供的并发工具类,避免手动管理线程同步。 - 尽量避免长时间持有锁,以...
p.data.equals(x)) { p = p.next; ++j; } if (p != null) return j; else return -1; } // 显示链表 public void display() { Node<T> node = head.next; while (node != null) { System.out.print...
`isEmpty(String str)` **功能:** 判断传入的字符串是否为空或长度为零。 **参数:** - `str` - 需要判断的字符串。 **返回值:** - 如果字符串为`null`或其长度小于等于0,则返回`true`;否则返回`false`。 **...
- `JUtils.randomString(int length)`: 生成指定长度的随机字符串,可用于生成唯一标识。 通过对JUtils源码的分析,我们可以看到它覆盖了开发中的多个常见场景,这些工具方法极大地提高了代码的可读性和可维护性。...
- `equals()`: 比较两个字符串的内容是否相等,忽略大小写可以使用`equalsIgnoreCase()`。 - `compareTo()`: 比较字符串的字典顺序,返回值可判断字符串的相对大小。 3. **获取子串** - `substring(int ...
- `isEmpty()`:判断字符串是否为空(长度为0)。 - `contains(CharSequence s)`:判断字符串是否包含指定的字符序列。 - `equals(Object anObject)`:判断两个字符串是否相等。 - `equalsIgnoreCase(String another...
- `equals`: 用于比较两个字符串是否相等,对null值进行了处理。 - `join`: 将数组合并为一个字符串,可以指定分隔符。 - `split`: 分割字符串。 - `EMPTY`: 定义了一个空字符串常量。 2. **org.spring...
- `isEmpty()`: 判断字符串是否为空串。 - **转换功能**: - `getBytes()`: 把字符串转换为字节数组。 - `toCharArray()`: 把字符串转换为字符数组。 - `String.valueOf(char[] chs)`: 把字符数组转换为字符串。...
if (s.isEmpty() || s.equals(" ")) return " "; int j = s.length() - 1, i = j; StringBuffer str = new StringBuffer(); while (i >= 0) { while (i >= 0 && s.charAt(i) != ' ') i--; str.append(s....
2. **实例方法引用**:如 `String::length`,引用对象实例的方法,需要与Lambda表达式的接收者类型匹配。 3. **构造器引用**:如 `List::new`,用于创建新对象,与工厂方法类似。 在Lambda表达式中,如果只需要调用...
System.out.println(s1.equals(s2)); // false System.out.println(s1.equalsIgnoreCase(s2)); // true System.out.println(s1.compareTo(s2)); // 正数 System.out.println(s1.compareToIgnoreCase(s2)); // 0 ...
根据给定文件的信息,我们可以总结出... - `equals(Object anObject)`:比较两个字符串是否相等。 - `isEmpty()`:判断字符串是否为空。 以上内容覆盖了给定文件中提到的主要知识点,希望对你准备Java面试有所帮助。
- `endsWith(String str)`,`isEmpty()`,`contains(CharSequence)`,`equals(Object anObject)`和`equalsIgnoreCase(String anotherString)`:这些是用于字符串比较的方法。 - `replace(char oldChar, char ...
- 对于集合和数组,推荐使用`isEmpty()`或`length == 0`检查是否为空。 9. **异常统一入口**: - 统一使用`@ControllerAdvice`和`@ExceptionHandler`处理全局异常。 10. **单元测试**: - 所有的公共方法和重要...
- `length()`:返回字符串的长度。 - `charAt(int index)`:返回指定索引处的字符。 - `substring(int beginIndex, int endIndex)`:提取子字符串。 - `getBytes()`:将字符串转换为字节数组。 - `setCharAt...
- 判断功能:equals()、contains()、startsWith()、endsWith()、isEmpty() - 转换功能:getBytes()、toCharArray()、valueOf()、toLowerCase()、toUpperCase()、concat() - 其他功能:replace()、trim()、...