按降序对索引进行排序,然后将其一一删除。如果这样做,删除将不会影响以后要删除的任何索引。
如何对它们进行排序将取决于您用来存储索引的集合。如果是列表,则可以执行以下 *** 作:
编辑List<Integer> indices;Collections.sort(indices, new Comparator<Integer>() { public int compare(Integer a, Integer b) { //todo: handle null return b.compareTo(a); }}
@aioobe找到了我找不到的助手。除了上述内容,您还可以使用
Collections.sort(indices, Collections.reverseOrder());
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)