关于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); }
关于CollectionUtils.isEmpty() CollectionUtils.isEmpty()作用:判断参数null或者其size0 CollectionUtils.isEmpty()源码: Collection的isEmpty() 没有写明是不是判断collection的size为0 测试 @Test public void test() { boolean emptyA = false; boolean emptyB = false; List
listA = null; List
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); }