我正在看《编码火车》的处理教程。在5.4中,他制作了应该具有椭圆的代码行,然后在单击时移动,但是在再次单击时停止。但对我来说,它只是说public Set<T> findRepeatedValues(List<T> list){
Set<T> set = new HashSet<>();
Set<T> repeatedValues = new HashSet<>();
for (T i: list) {
if (!set.add(i)) {
repeatedValues.add(i);
}
}
return repeatedValues;
}
。这是我的代码:
@Test
public void findRepeatedStrings(){
List<String> stringList = new ArrayList<String>(Arrays.asList("ali","mahdi","hadi","mahdi","mojtaba","mohammad","mojtaba"));
RepeatedValues repeatedValues = new RepeatedValues();
Set values = repeatedValues.findRepeatedValues(stringList);
for (Object i :
values) {
System.out.println(i);
}
}
答案 0 :(得分:0)
我的猜测是您正在设置断点的调试模式下运行。
您可能想通过单击右上角的蝶形按钮来禁用调试模式,或者要找到断点并通过单击带有菱形图标的行号来将其删除。