栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

java中常用的方法

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

java中常用的方法

java中常用的方法
  • StringUtils(org.apache.commons.lang3)
    • isEmpty(str)
    • isBlank(str)
    • isAnyBlank(str)
  • Map
    • putIfAbsent

StringUtils(org.apache.commons.lang3) isEmpty(str)

判断字符串是否为 “” , null

// Empty checks
    //-----------------------------------------------------------------------
    
    public static boolean isEmpty(final CharSequence cs) {
        return cs == null || cs.length() == 0;
    }

isBlank(str)

判断字符串是否为 “” ,null , “ ”

 
    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))) {
                return false;
            }
        }
        return true;
    }
isAnyBlank(str)

判断多个字符串中是否存在 null , " " , "’

    public static boolean isAnyBlank(final CharSequence... css) {
      if (ArrayUtils.isEmpty(css)) {
        return false;
      }
      for (final CharSequence cs : css) {
        if (isBlank(cs)) {
          return true;
        }
      }
      return false;
    }
Map putIfAbsent

如果map中不存在该 key 或 key所对应的val为null ,则 put ,方法返回 null
否则返回key对应的val值

    
    default V putIfAbsent(K key, V value) {
        V v = get(key);
        if (v == null) {
            v = put(key, value);
        }

        return v;
    }
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/439898.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号