Java集合为空校验

工作这么多年,一直没有提高代码质量,从今天这篇博客起步,努力提高自己水平。

不多说,直接 上代码:

    static Map<String,Object> m = null;
    static Map<String,Object> mm = new HashMap<>();
    static Map<String,Object> map = new HashMap<>();

    /**
     * 迭代 entrySet() 才是更高效的做法
     */
    public static void mapTest(){
        map.put("1","111");
        map.put("2","222");
        for (Map.Entry<String,Object> entry : map.entrySet()){
            System.out.println(entry.getKey());
            System.out.println(entry.getValue());
        }
    }

    public static void utilTest(){
        System.out.println("Objects.isNull校验为 null 的map是否为空:"+Objects.isNull(m));

        System.out.println("Objects.isNull校验为 new HashMap 且没有值 的map是否为空:"+Objects.isNull(mm));

        System.out.println("Objects.isNull校验为 new HashMap 且有数据项 的map是否为空:"+Objects.isNull(map));

        System.out.println("CollectionUtils.isEmpty校验为 null 的map是否为空:"+CollectionUtils.isEmpty(m));

        System.out.println("CollectionUtils.isEmpty校验为 new HashMap 且没有值  的map是否为空:"+CollectionUtils.isEmpty(mm));

        System.out.println("CollectionUtils.isEmpty校验为 new HashMap 且有数据项 的map是否为空:"+CollectionUtils.isEmpty(map));

        try{
            System.out.print("集合中isEmpty方法校验为 null 的map是否为空:");
            System.out.print(m.isEmpty());
        }catch (Exception e){
            System.out.print("      报错了,m只是引用,其值为null,并不是真正的Map,没有isEmpty方法,错误信息为:"+e);
            System.out.println();
        }

        System.out.println("集合中isEmpty方法校验为 new HashMap 且没有值  的map是否为空:"+mm.isEmpty());

        System.out.println("集合中isEmpty方法校验为 new HashMap 且有数据项 的map是否为空:"+map.isEmpty());
    }

    public static void main(String[] args) {
        BaseClass.mapTest();

        BaseClass.utilTest();

    }

最终运行结果为:

你 get 到了吗?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值