What is the best way get the symmetric difference between two sets in java?(在java中获得两组之间对称差异的最佳方法是什么?)
问题描述
我想知道是否有一种快速/干净的方法来获得两组之间的对称差异?
I'm wondering if there is a quick/clean way to get the symmetric difference between two sets ?
我有:
Set<String> s1 = new HashSet<String>();
s1.add("a");
s1.add("b");
s1.add("c");
Set<String> s2 = new HashSet<String>();
s2.add("b");
我需要类似的东西:
Set<String> diff = Something.diff(s1, s2);
// diff would contain ["a", "c"]
<小时>
只是为了澄清我需要对称差异.
推荐答案
你可以使用 Google Guava 库(真的很棒,我强烈推荐它!):
You can use some functions from the Google Guava library (which is really great, I strongly recommend it!):
Sets.difference(s1, s2);
Sets.symmetricDifference(s1, s2);
difference() 和 symmetricDifference()
symmetricDifference()
完全符合 您的要求,但 difference()
通常也很有帮助.
symmetricDifference()
does exactly what you are asking for, but difference()
is also often helpful.
这两种方法都返回实时视图,但您可以例如在结果集上调用 .immutableCopy()
以获得不变集.如果您不想要视图,但需要一个可以修改的集合实例,请调用 .copyInto(s3)
.请参阅 SetView 对于这些方法.
Both methods return a live view, but you can for example call .immutableCopy()
on the resulting set to get a non-changing set. If you don't want a view, but need a set instance you can modify, call .copyInto(s3)
. See SetView for these methods.
这篇关于在java中获得两组之间对称差异的最佳方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在java中获得两组之间对称差异的最佳方法是什么?
基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01