狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

[轉(zhuǎn)帖] isEmpty 和 isBlank 的區(qū)別!

liguoquan
2023年8月9日 18:3 本文熱度 626
: isEmpty 和 isBlank 的區(qū)別!


 isEmpty 和 isBlank 的區(qū)別!


# isEmpty系列

StringUtils.isEmpty()

是否為空. 可以看到 " " 空格是會(huì)繞過這種空判斷,因?yàn)槭且粋€(gè)空格,并不是嚴(yán)格的空值,會(huì)導(dǎo)致 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()

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


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

StringUtils.isAnyEmpty()

是否有一個(gè)為空,只有一個(gè)為空,就為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()

相當(dāng)于!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()

是否真的不為空,不是空格或者空值 ,相當(dāng)于!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 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲(chǔ)管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved