我有以下代码:public static void poistaKaikki32(LinkedList L1, Collection L2) { LinkedList<Integer> temp = new LinkedList<>(); HashSet<Integer> L2Set = new HashSet<>(L2); // first filter elements into temp while (L1.size() > 0) { // n loops int v = L1.removeFirst(); <--- getting error cannot convert object to int if (!L2Set.contains(v)) { temp.addLast(v); } } // add filtered values back to L1 while (temp.size() > 0) { L1.addLast(temp.removeFirst()); } }我不断收到关于 int v = L1.removeFirst(); 的错误。我将如何解决这个问题,而不使用强制转换
添加回答
举报
0/150
提交
取消