[objectUitls] [stringUtils]

2021-12-22 12:02:42 +08:00
 RedBeanIce
public class ObjectUtilsTest {
    public static void main(String[] args) {
        List<String> list = new ArrayList<>();
        Set<String> set = new HashSet<>();
        Map<String, String> map = new HashMap<>();
        Integer[] arr = {};
        Integer integer = null;
        String str1 = null;
        String str2 = "";
        String str3 = "s";
        System.out.println("list = " + ObjectUtils.isEmpty(list));
        System.out.println("set = " + ObjectUtils.isEmpty(set));
        System.out.println("map = " + ObjectUtils.isEmpty(map));
        System.out.println("arr = " + ObjectUtils.isEmpty(arr));
        System.out.println("integer = " + ObjectUtils.isEmpty(integer));
        System.out.println("str1 = " + ObjectUtils.isEmpty(str1));
        System.out.println("str2 = " + ObjectUtils.isEmpty(str2));
        System.out.println("str3 = " + ObjectUtils.isEmpty(str3));
    }
}
list = true
set = true
map = true
arr = true
integer = true
str1 = true
str2 = true
str3 = false

请问这种情况下,stringutils.isblank 的意义在哪里呢,,,

感觉处理,只判断 string=""时,需要用到 stringutils.isempty

stringutils.isblank 的存在意义,被 ObjectUtils.isEmpty 全部压住了

1317 次点击
所在节点    Java
9 条回复
lovedoing
2021-12-22 12:10:01 +08:00
Checks if a String is whitespace, empty ("") or null.
gadfly3173
2021-12-22 12:20:37 +08:00
首先 blank 最主要是判断字符串是不是全是空格,其次这种名字的 Util 这么多,不如先说说这是哪个包里的。。。
RedBeanIce
2021-12-22 12:21:32 +08:00
@lovedoing 我无法理解回复的意思,我只能理解到是在回答 stringutils.isblank 的功能。

可是问题的原意是,stringutils.isblank 的存在意义,ObjectUtils.isEmpty 完全可以做到 stringutils.isblank 的功能
RedBeanIce
2021-12-22 12:22:54 +08:00
@gadfly3173 spring 自带
GM
2021-12-22 12:24:07 +08:00
```
isBlank(" ") == true;
isEmpty(" ") == false;

```
RedBeanIce
2021-12-22 12:24:50 +08:00
我懂了,,又是一个傻子般的问题。
RedBeanIce
2021-12-22 12:30:36 +08:00
问问题应该先看源码的,犯了提问的艺术的错误
monetto
2021-12-22 12:31:09 +08:00
其他的就不说了,补充一点,语义化作用。
StringUtils 会让人联想到 String 的一些判断逻辑。
而 ObjectUtil 给人感觉更是通用的一些逻辑,会让人反应一秒,或者需要点进源码里看一看。
gadfly3173
2021-12-22 16:59:42 +08:00
@RedBeanIce #4 spring 自带的 isBlank 应该是被废弃的吧。。。现在是用 hasText 和 hasLength 代替

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/823718

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX