首页 > 其他 > 详细

关于字符串是否为空的测试小程序

时间:2016-06-15 22:21:18      阅读:1074      评论:0      收藏:0      [点我收藏+]
public class StringEmpty {

    public static void main(String[] args) {

        String str1 = null;
        String str2 = "";
        String str3 = "i have a dream!";
        String[] array = new String[]{str1, str2, str3};

        for (String str : array) {

            System.out.println(str == null);

            System.out.println("str.isEmpty() ?" + ("").equals(str));

            System.out.println("valid str Not Empty ? " + validString(str));

            System.out.println("=======================================");

        }

    }

    public static boolean validString(String string) {
        if (null == string || ("").equals(string)) {
            return false;
        } else
            return true;
    }

}

测试结果如下:

技术分享

关于字符串是否为空的测试小程序

原文:http://www.cnblogs.com/binfoo/p/5589001.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!