list返回null进行for循环stream会空指针解决方式

建议:关于集合的返回,最好做一个判断,有可能是空时,返回空集合,不要null。会大大减少空指针问题

if(CollectionUtils.isEmpty(resourcelist)){
        resourcelist = Collections.emptyList();
 }

list返回null进行for循环stream会空指针解决方式_第1张图片
list返回null进行for循环stream会空指针解决方式_第2张图片

list返回null进行for循环stream会空指针解决方式_第3张图片
list返回null进行for循环stream会空指针解决方式_第4张图片

你可能感兴趣的:(list返回null进行for循环stream会空指针解决方式)