关于CollectionUtils.isEmpty()

关于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);
        }
    

posted @ 2021-10-28 15:13  musecho  阅读(3036)  评论(0编辑  收藏  举报