集合List中的批量删除

List strList = new ArrayList();
 strList.add(“1”);
 strList.add(“2”);
 strList.add(“3”);
 strList.add(“4”);
 strList.add(“5”);
 strList.add(“6”);
 strList.add(“7”);
 strList.add(“8”);
 strList.add(“9”);
 strList.add(“10”);
 System.out.println(strList);
 //result:[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
 
 Iterator strIterator = strList.iterator();
 while (strIterator.hasNext()) {
  String str = (String) strIterator.next();
  for (int i = 4; i < 8; i++) {
   if(str.equals(i+”“)){
    //使用Iterator的remove方法移除当前对象
    strIterator.remove();
    //如果使用List的remove方法,则会出现ConcurrentModificationException
    //strList.remove(str);
   }
  }
 }
 System.out.println(strList);
 //result:[1, 2, 3, 8, 9, 10]
 
// strList.subList(4, 8).clear();
// System.out.println(strList);
 //result:[1, 2, 3, 4, 9, 10]

在C#,你可以使用不同的方法来批量删除List的元素。以下是几个常见的方法: 1. 使用foreach循环遍历List,并使用Remove方法删除满足条件的元素。然而,在foreach循环删除元素会引发异常,因为集合正在遍历被修改。所以这个方法可能不适用于批量删除。 2. 使用for循环正序遍历List,并使用Remove方法删除满足条件的元素。需要注意的是,在for循环删除元素时,要从后往前遍历以避免索引溢出的问题。以下是示例代码: ```csharp for (int i = stuList.Count - 1; i >= 0; i--) { if (stuList[i].Name == "Tang") stuList.Remove(stuList[i]); } ``` 3. 使用for循环倒序遍历List,并使用Remove方法删除满足条件的元素。同样,需要从后往前遍历以避免索引溢出的问题。以下是示例代码: ```csharp for (int i = stuList.Count - 1; i >= 0; i--) { if (stuList[i].Name == "Tang") stuList.Remove(stuList[i]); } ``` 这些方法,使用for循环倒序遍历删除是较为常用的方法,因为它避免了引发异常的问题并且性能较好。但是,需要注意在删除元素后要及时更新循环变量,以避免跳过元素或重复删除的问题。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [C#泛型List删除多个元素的方法](https://blog.csdn.net/weixin_42513339/article/details/83211500)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值