处理List出现 Not showing null elements 错误解决方案

处理List出现 Not showing null elements 错误解决方案 在此记录
原因是list里面有空元素
解决方案:
list.removeAll(Collections.singleton(null));

处理list前,使用一下这句代码就OK了。
removeAll是移除所有括号内的元素,如果括号内参数为空代表移除所有

上一篇:[LeetCode] 203. Remove Linked List Elements


下一篇:【leetcode】26 Remove Duplicates from Sorted Array