从 HashSet 中删除空引用

发布于 2024-12-05 10:00:06 字数 104 浏览 1 评论 0原文

有没有一种简单的方法可以从 HashSet 中删除空引用,例如 我们如何使用list.removeAll(Collections.singletonList(null))从List中删除它们?

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)) ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅浅淡淡 2024-12-12 10:00:06

由于 Set 不能两次包含相同的值(包括 null,如果特定 Set 实现支持),只需执行 set.remove(null)< /code>就足够了。

请注意,您之前甚至不需要检查 null 是否存在,因为如果 Setremove(null) 不会执行任何操作。不包含 null

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.

清醇 2024-12-12 10:00:06

HashSet 作为一个集合,仅包含任何对象的一个​​“副本”,这也意味着它只能包含 null 的一个实例。因此,您只需使用HashSet.remove(null)即可。

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文