ASP.NET里删除List集合里一个对象
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET里删除List集合里一个对象相关的知识,希望对你有一定的参考价值。
这种方式modelList.Remove(model);不行。。。很郁闷,如果用modelList.RemoveAt()的话,这个没有试,不过觉得会比较麻烦,Remove怎么会不行呢。
仔细找吧,你这个model实例肯定不在modelList里,从集合里删对象就Remove和RemoveAt两个方法,一个是.net帮你查找索引,一个是直接给索引删 参考技术A list的Remove方法内是你需要移除的string类型的对象。你的model是神马东西。IList<string> list1 = new List<string>();
list1.Add("123");
list1.Add("123");
list1.Add("123");
list1.Remove("123");追问
List的类型不是可以自己指定的么?model是一个对象,modelList就是这个对象的集合
追答我知道,但是Remove是要移除string类型的对象啊。不能移除集合啊。RemoveAt是移除集合里面的元素,以下标计算。
追问呵呵,不是移除集合,是移除单个对象,看清楚。Remove可以移除任何类型的数据,只要是该List集合类型的对象就可以了,不仅仅是string,移除方法是:modelList.Remove(modelList[i]),根据元素的位置移除。呵呵。
List 集合 remove 对象时出现 ConcurrentModificationException
在一次做项目的过程中要遍历 list 集合,然后根据条件删除 list 集合中不需要的对象,尝试了 list.remove() 方法,根本达不到目的,最后在网上看了几个帖子后才知道,要想根据条件删除 list 集合里面的对象,一定要使用 Iterator 遍历删除
如下示例
public class ListDemo {
public static void main(String[] args) {
List<Fruit> fruitList = new ArrayList<>();
fruitList.add(new Fruit(1, "apple", "红色", 120.00));
fruitList.add(new Fruit(2, "orange", "黄色", 140.00));
fruitList.add(new Fruit(3, "guava", "灰色", 160.00));
fruitList.add(new Fruit(4, "pear", "黄色", 180.00));
fruitList.add(new Fruit(5, "mango", "黄色", 240.00));
fruitList.add(new Fruit(6, "watermelon", "绿色", 260.00));
if (Objects.nonNull(fruitList) && !fruitList.isEmpty()) {
for (Fruit fruit : fruitList) {
if (Objects.equals(fruit.getColor(), "黄色")) {
fruitList.remove(fruit);
}
}
}
}
}
执行上面的代码时会出现如下报错
对于 List 集合来说,如果你想移除 List 集合中的元素,必须要使用 Iterator 进行迭代遍历
public class ListDemo {
public static void main(String[] args) {
List<Fruit> fruitList = new ArrayList<>();
fruitList.add(new Fruit(1, "apple", "红色", 120.00));
fruitList.add(new Fruit(2, "orange", "黄色", 140.00));
fruitList.add(new Fruit(3, "guava", "灰色", 160.00));
fruitList.add(new Fruit(4, "pear", "黄色", 180.00));
fruitList.add(new Fruit(5, "mango", "黄色", 240.00));
fruitList.add(new Fruit(6, "watermelon", "绿色", 260.00));
if (Objects.nonNull(fruitList) && !fruitList.isEmpty()) {
ListIterator<Fruit> iterator = fruitList.listIterator();
while(iterator.hasNext()){
// 注意,进行元素移除的时候只能出现一次 iterator.next()
if(Objects.equals(iterator.next().getColor(),"黄色")){
iterator.remove();
}
}
}
}
}
以上是关于ASP.NET里删除List集合里一个对象的主要内容,如果未能解决你的问题,请参考以下文章