Java技术-isEmpty 和 isBlank 的用法区别

也许你两个都不知道,也许你除了isEmpty/isNotEmpty/isNotBlank/isBlank外,并不知道还有isAnyEmpty/isNoneEmpty/isAnyBlank/isNoneBlank的存在, 他们都是org.apache.commons.lang3.StringUtils;这个工具类中的方法

isEmpty系列

StringUtils.isEmpty()

是否为空。可以看到 " " 空格是会绕过这种空判断,因为是一个空格,并不是严格的空值,会导致 isEmpty(" ")=false

  • StringUtils.isEmpty(null) = true

  • StringUtils.isEmpty("") = true

  • StringUtils.isEmpty(" ") = false

  • StringUtils.isEmpty(“bob”) = false

  • StringUtils.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;}

针对源码的分析,只可以看到对字符串的null判断和长度是否为0进行判断,例如带有空格的空字符串,长度是不为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”) = true

  • StringUtils.isAnyEmpty("", “bar”) = true

  • StringUtils.isAnyEmpty(“bob”, “”) = true

  • StringUtils.isAnyEmpty(" bob ", null) = true

  • StringUtils.isAnyEmpty(" ", “bar”) = false

  • StringUtils.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) = true

  • StringUtils.isBlank("") = true

  • StringUtils.isBlank(" ") = true

  • StringUtils.isBlank(“bob”) = false

  • StringUtils.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) = true

  • StringUtils.isAnyBlank(null, “foo”) = true

  • StringUtils.isAnyBlank(null, null) = true

  • StringUtils.isAnyBlank("", “bar”) = true

  • StringUtils.isAnyBlank(“bob”, “”) = true

  • StringUtils.isAnyBlank(" bob ", null) = true

  • StringUtils.isAnyBlank(" ", “bar”) = true

/*** <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) = false

  • StringUtils.isNoneBlank(null, “foo”) = false

  • StringUtils.isNoneBlank(null, null) = false

  • StringUtils.isNoneBlank("", “bar”) = false

  • StringUtils.isNoneBlank(“bob”, “”) = false

  • StringUtils.isNoneBlank(" bob ", null) = false

  • StringUtils.isNoneBlank(" ", “bar”) = false

  • StringUtils.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);}

 StringUtils的其他方法

 也可以去StringUtils (Apache Commons Lang 3.14.0 API)去查看一下其他的用法。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/318056.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【损失函数】Quantile Loss 分位数损失

1、介绍 Quantile Loss&#xff08;分位数损失&#xff09;是用于回归问题的一种损失函数&#xff0c;它允许我们对不同分位数的预测误差赋予不同的权重。这对于处理不同置信水平的预测非常有用&#xff0c;例如在风险管理等领域。 当我们需要对区间预测而不单是点预测时 分位…

Redis:原理速成+项目实战——Redis实战4(解决Redis缓存穿透、雪崩、击穿)

&#x1f468;‍&#x1f393;作者简介&#xff1a;一位大四、研0学生&#xff0c;正在努力准备大四暑假的实习 &#x1f30c;上期文章&#xff1a;Redis&#xff1a;原理项目实战——Redis实战3&#xff08;Redis缓存最佳实践&#xff08;问题解析高级实现&#xff09;&#x…

MySQL中的六种日志你都懂么?不懂!那就必须看看

&#x1f604; 19年之后由于某些原因断更了三年&#xff0c;23年重新扬帆起航&#xff0c;推出更多优质博文&#xff0c;希望大家多多支持&#xff5e; &#x1f337; 古之立大事者&#xff0c;不惟有超世之才&#xff0c;亦必有坚忍不拔之志 &#x1f390; 个人CSND主页——Mi…

基于springboot的火锅店管理系统设计与实现

&#x1f345;点赞收藏关注 → 私信领取本源代码、数据库&#x1f345; 本人在Java毕业设计领域有多年的经验&#xff0c;陆续会更新更多优质的Java实战项目希望你能有所收获&#xff0c;少走一些弯路。&#x1f345;关注我不迷路&#x1f345;一 、设计说明 1.1选题动因 当前…

条款16:成对使用 new 和 delete 时要采用相同形式

下面程序的行为是未定义的。至少&#xff0c;stringArray指向的100个string对象中有99个不太可能被正确地析构。 被delete的指针指向单个对象还是一个对象数组&#xff1f;内存数组通常包括数组的大小&#xff0c;delete可以知道需要调用多少个析构函数。 使用delete时使用了方…

阶段二-Day10-日期类

日期类结构: 1.java.util.Date是日期类 2.DateFormat是日期格式类、SimpleDateFormat是日期格式类的子类 Timezone代表时区 3.Calendar是日历类&#xff0c;GregorianCalendar是日历的子类 一. 常用类-Date 1.1 Date构造方法 Date(long date) 使用给定的毫秒时间价值构建…

大模型实战营第二期——1. 书生·浦语大模型全链路开源开放体系

文章目录 1. 实战营介绍2. 书生浦语大模型介绍2.1 数据2.2 预训练2.3 微调2.4 评测2.5 部署2.6 智能体(应用) 1. 实战营介绍 github链接&#xff1a;https://github.com/internLM/tutorialInternLM&#xff1a;https://github.com/InternLM书生浦语官网&#xff1a;https://in…

基于混合蛙跳算法优化的Elman神经网络数据预测 - 附代码

基于混合蛙跳算法优化的Elman神经网络数据预测 - 附代码 文章目录 基于混合蛙跳算法优化的Elman神经网络数据预测 - 附代码1.Elman 神经网络结构2.Elman 神经用络学习过程3.电力负荷预测概述3.1 模型建立 4.基于混合蛙跳优化的Elman网络5.测试结果6.参考文献7.Matlab代码 摘要&…

考PMP真的有用吗?看完立马不犹豫了!

其实我个人觉得在你考证之前&#xff0c;值得反思的是&#xff1a;为什么要考这个证书&#xff1f;是因为公司需要&#xff1f;个人职业发展&#xff1f;还是受到新闻报道或广告的影响&#xff0c;觉得PMP证书有价值&#xff0c;只是想了解一下。这样就会导致很多人会说&#x…

【obj To 3DTiles 格式转换】 可以自定义经纬高、属性表等参数。

目录 0 引言1 3DTiles数据2 objTo3DTiles2.1 工具的安装2.1.1 拓展&#xff1a;Node.js 和 npm 2.2 工具的使用2.2.1 输出成瓦片数据2.2.2 输出带有坐标参数的瓦片数据 3 查看3DTiles数据 &#x1f64b;‍♂️ 作者&#xff1a;海码007&#x1f4dc; 专栏&#xff1a;Cesiumfor…

蓝桥圣诞树(C++)

问题描述 输入样例&#xff1a; 1 3 101 1 2 2 3 输出样例&#xff1a; YES 思路&#xff1a; 这道题还是比较好想的&#xff0c;因为它构造的二叉树是用边连接起来的&#xff0c;不是像之前一样从上到下从左到右按编号构造的&#xff0c;所以可以用邻接表来存每个点还有边&am…

RK3568驱动指南|第九篇 设备模型-第100章 在总线目录下创建属性文件实验

瑞芯微RK3568芯片是一款定位中高端的通用型SOC&#xff0c;采用22nm制程工艺&#xff0c;搭载一颗四核Cortex-A55处理器和Mali G52 2EE 图形处理器。RK3568 支持4K 解码和 1080P 编码&#xff0c;支持SATA/PCIE/USB3.0 外围接口。RK3568内置独立NPU&#xff0c;可用于轻量级人工…