Is there a simple way of removing null references from a HashSet like
the way we can delete them from a List using list.removeAll(Collections.singletonList(null))
?
Asked
Active
Viewed 2.8k times
22

Joachim Sauer
- 302,674
- 57
- 556
- 614

Mouna Cheikhna
- 38,870
- 10
- 48
- 69
2 Answers
62
Since a Set
can not contain the same value twice (including null
, if it is supported by the specific Set
implementation), simply doing set.remove(null)
would be sufficient.
Note that you don't even need to check for the existence of null
before, because remove(null)
will simply do nothing if the Set
doesn't contain null
.

Joachim Sauer
- 302,674
- 57
- 556
- 614
-
Is there a .NET alternative to a `HashSet
` that does not allow null values? – Shimmy Weitzhandler Mar 27 '20 at 03:10
4
A HashSet
, being a set, only contains one "copy" of any object, which also means that it can only contain one instance of null
. Thus, you can just use HashSet.remove(null)
.

Tikhon Jelvis
- 67,485
- 18
- 177
- 214