标签: java intersection hashset
我的问题很简单,我知道,但不知道为什么我遇到这个问题。我想要得到两组字符串的交集。这是我的代码:
public int estimatorSuccess(Set<String> set1, Set<String> set2) { Set<String> intersection = new HashSet<String>(set1); intersection.retainAll(set2);
} 但是路口空了!!! 有人可以告诉我这有什么问题吗?