欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

[轉帖] isEmpty 和 isBlank 的區別!

liguoquan
2023年8月9日 18:3 本文熱度 650
: isEmpty 和 isBlank 的區別!


 isEmpty 和 isBlank 的區別!


# isEmpty系列

StringUtils.isEmpty()

是否為空. 可以看到 " " 空格是會繞過這種空判斷,因為是一個空格,并不是嚴格的空值,會導致 isEmpty(" ")=false


StringUtils.isEmpty(null) = trueStringUtils.isEmpty("") = trueStringUtils.isEmpty(" ") = falseStringUtils.isEmpty(“bob”) = falseStringUtils.isEmpty(" bob ") = false


   /**     *     * <p>NOTE: This method changed in Lang version 2.0.     * It no longer trims the CharSequence.     * That functionality is available in isBlank().</p>     *     * @param cs  the CharSequence to check, may be null     * @return {@code true} if the CharSequence is empty or null     * @since 3.0 Changed signature from isEmpty(String) to isEmpty(CharSequence)     */    public static boolean isEmpty(final CharSequence cs) {        return cs == null || cs.length() == 0;    }

StringUtils.isNotEmpty()

相當于不為空 , = !isEmpty()


public static boolean isNotEmpty(final CharSequence cs) {        return !isEmpty(cs);    }

StringUtils.isAnyEmpty()

是否有一個為空,只有一個為空,就為true.


StringUtils.isAnyEmpty(null) = true
StringUtils.isAnyEmpty(null, “foo”) = trueStringUtils.isAnyEmpty("", “bar”) = trueStringUtils.isAnyEmpty(“bob”, “”) = trueStringUtils.isAnyEmpty(" bob ", null) = trueStringUtils.isAnyEmpty(" ", “bar”) = falseStringUtils.isAnyEmpty(“foo”, “bar”) = false


/**     * @param css  the CharSequences to check, may be null or empty     * @return {@code true} if any of the CharSequences are empty or null     * @since 3.2     */    public static boolean isAnyEmpty(final CharSequence... css) {      if (ArrayUtils.isEmpty(css)) {        return true;      }      for (final CharSequence cs : css){        if (isEmpty(cs)) {          return true;        }      }      return false;    }

StringUtils.isNoneEmpty()

相當于!isAnyEmpty(css) , 必須所有的值都不為空才返回true


    /**     * <p>Checks if none of the CharSequences are empty ("") or null.</p>     *     * <pre>     * StringUtils.isNoneEmpty(null)             = false     * StringUtils.isNoneEmpty(null, "foo")      = false     * StringUtils.isNoneEmpty("", "bar")        = false     * StringUtils.isNoneEmpty("bob", "")        = false     * StringUtils.isNoneEmpty("  bob  ", null)  = false     * StringUtils.isNoneEmpty(" ", "bar")       = true     * StringUtils.isNoneEmpty("foo", "bar")     = true     * </pre>     *     * @param css  the CharSequences to check, may be null or empty     * @return {@code true} if none of the CharSequences are empty or null     * @since 3.2     */    public static boolean isNoneEmpty(final CharSequence... css) {      return !isAnyEmpty(css);    }

# isBank系列

StringUtils.isBlank()

是否為真空值(空格或者空值)


StringUtils.isBlank(null) = trueStringUtils.isBlank("") = trueStringUtils.isBlank(" ") = trueStringUtils.isBlank(“bob”) = falseStringUtils.isBlank(" bob ") = false


    /**     * <p>Checks if a CharSequence is whitespace, empty ("") or null.</p>     * @param cs  the CharSequence to check, may be null     * @return {@code true} if the CharSequence is null, empty or whitespace     * @since 2.0     * @since 3.0 Changed signature from isBlank(String) to isBlank(CharSequence)     */    public static boolean isBlank(final CharSequence cs) {        int strLen;        if (cs == null || (strLen = cs.length()) == 0) {            return true;        }        for (int i = 0; i < strLen; i++) {            if (Character.isWhitespace(cs.charAt(i)) == false) {                return false;            }        }        return true;    }

StringUtils.isNotBlank()

是否真的不為空,不是空格或者空值 ,相當于!isBlank();


public static boolean isNotBlank(final CharSequence cs) {        return !isBlank(cs);    }

StringUtils.isAnyBlank()

是否包含任何真空值(包含空格或空值)


StringUtils.isAnyBlank(null) = trueStringUtils.isAnyBlank(null, “foo”) = trueStringUtils.isAnyBlank(null, null) = trueStringUtils.isAnyBlank("", “bar”) = trueStringUtils.isAnyBlank(“bob”, “”) = trueStringUtils.isAnyBlank(" bob ", null) = trueStringUtils.isAnyBlank(" ", “bar”) = trueStringUtils.isAnyBlank(“foo”, “bar”) = false


     /**     * <p>Checks if any one of the CharSequences are blank ("") or null and not whitespace only..</p>     * @param css  the CharSequences to check, may be null or empty     * @return {@code true} if any of the CharSequences are blank or null or whitespace only     * @since 3.2     */    public static boolean isAnyBlank(final CharSequence... css) {      if (ArrayUtils.isEmpty(css)) {        return true;      }      for (final CharSequence cs : css){        if (isBlank(cs)) {          return true;        }      }      return false;    }

StringUtils.isNoneBlank()

是否全部都不包含空值或空格


StringUtils.isNoneBlank(null) = falseStringUtils.isNoneBlank(null, “foo”) = falseStringUtils.isNoneBlank(null, null) = falseStringUtils.isNoneBlank("", “bar”) = falseStringUtils.isNoneBlank(“bob”, “”) = falseStringUtils.isNoneBlank(" bob ", null) = falseStringUtils.isNoneBlank(" ", “bar”) = falseStringUtils.isNoneBlank(“foo”, “bar”) = true


    /**     * <p>Checks if none of the CharSequences are blank ("") or null and whitespace only..</p>     * @param css  the CharSequences to check, may be null or empty     * @return {@code true} if none of the CharSequences are blank or null or whitespace only     * @since 3.2     */    public static boolean isNoneBlank(final CharSequence... css) {      return !isAnyBlank(css);    }

該文章在 2023/8/9 18:03:06 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved