码迷,mamicode.com
首页 > 其他好文 > 详细

判断字符串为空的三种方法

时间:2021-05-04 16:09:48      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:long   pojo   ref   als   ati   log   targe   void   http   

  1. 方法一: 最多人使用的一个方法, 直观, 方便, 但效率很低.
  2. 方法二: 比较字符串长度, 效率高, 是我知道的最好一个方法.
  3. 方法三: Java SE 6.0 才开始提供的方法, 效率和方法二几乎相等, 但出于兼容性考虑, 推荐使用方法二.

示例

package com.dong.session.pojo;

public class StringIsEmpty {
    static String s = "";
    static long n = 100000000;
	//方法一
    private static void equals() {
        long startTime = System.currentTimeMillis();
        for(long i = 0; i<n; i++) {
            if(s == null || s.equals(""));
        }
        long endTime = System.currentTimeMillis();

        System.out.println("equals use time: "+ (endTime - startTime) +"ms");
    }
	//方法二
    private static void length() {
        long startTime = System.currentTimeMillis();

        for(long i = 0; i< n; i++) {
            if(s == null || s.length() <= 0);
        }
        long endTime = System.currentTimeMillis();

        System.out.println("length use time: "+ (endTime - startTime) +"ms");
    }
	//方法三
    private static void isEmpty() {
        long startTime = System.currentTimeMillis();

        for(long i = 0; i <n; i++) {
            if(s == null || s.isEmpty());
        }
        long endTime = System.currentTimeMillis();

        System.out.println("isEmpty use time: "+ (endTime - startTime) +"ms");
    }

    public static void main(String[] args) {
        equals();
        length();
        isEmpty();
    }
}
equals use time: 58ms
length use time: 49ms
isEmpty use time: 48ms

参考文章:https://www.cnblogs.com/yy2011/archive/2011/04/18/2020111.html

判断字符串为空的三种方法

标签:long   pojo   ref   als   ati   log   targe   void   http   

原文地址:https://www.cnblogs.com/lanxinren/p/14726001.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!