首页 > 技术文章 > 关于CollectionUtils.isEmpty()

musecho 2021-10-28 15:13 原文

关于CollectionUtils.isEmpty()

  • CollectionUtils.isEmpty()作用:判断参数null或者其size0

  • CollectionUtils.isEmpty()源码:

  • Collection的isEmpty()

    没有写明是不是判断collection的size为0


  • 测试

    	@Test
        public void test() {
            boolean emptyA = false;
            boolean emptyB = false;
            List<Integer> listA = null;
            List<Integer> listB = new ArrayList<>();
            if (CollectionUtils.isEmpty(listA)) {
                emptyA = true;
            }
            if (CollectionUtils.isEmpty(listB)) {
                emptyB = true;
            }
            System.out.println("emptyA=" + emptyA);
            System.out.println("emptyB=" + emptyB);
        }
    

推荐阅读