C# List集合,在调用list.remove方法删除某一元素后触发事件,请问这个事件怎么写?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# List集合,在调用list.remove方法删除某一元素后触发事件,请问这个事件怎么写?相关的知识,希望对你有一定的参考价值。
如题。
List本身自然是没有这样的事件的,所以偷懒的话也只好自己写一个Remove方法了。
public class NotificationList<T> : List<T> where T : new()public event Action<T> OnItemRemoveEventHandler;
private Func<T, bool> predicator;
public void SetNotification(Func<T, bool> predicator)
this.predicator = predicator;
public void DisableNotification()
this.predicator = null;
public void Remove(T item)
base.Remove(item);
if (predicator != null && OnItemRemoveEventHandler != null && predicator(item))
OnItemRemoveEventHandler.BeginInvoke(item, null, null);
测试一下,Remove在2和6之间的元素时异步跳出对话框显示被删掉的元素。
NotificationList<int> myList = new NotificationList<int>() 1, 3, 4, 5, 6, 9 ;
myList.OnItemRemoveEventHandler += (item) => MessageBox.Show(item.ToString());
myList.SetNotification(item => item <= 6 && item >= 2);
myList.Remove(4);
myList.Remove(5);
为了方便使用,不监视特定对象,而是以一个谓词委托做判断。如果要监视所有,请
myList.SetNotifycation(i->true);
为了防止监视事件阻塞list自身的操作,事件均以异步形式调用且不检查调用结果。
因为删除的方法还有RemoveAt和RemoveAll,如果你需要相关监视的话请参考上面代码自己实现。
追求极致的话还请自己实现自己的类型。
参考技术A 继承list重写remove方法 参考技术B 你是说要触发的那个事件怎么写吗追问是的,如何写,如何触发。
java 集合 Arraylist<Character> list怎么移除字符? list.remove('的')不管用
参考技术A list.remove('的')是可以的,但是只能移除一个,最低索引的那个。如果想要移除所有的'的'。
建议使用Iterator循环,并使用Iterator的remove方法移除:
for(Iterator<Character>
iterator
=
list.iterator();iterator.hasNext();)
char
c
=
iterator.next();
if
(c
==
'的')
iterator.remove();
移除list中包含另一个Set集合中的所有元素:
public
boolean
removeAll(Collection<?>
c)
试试这个方法。
此时删除的是list中所有的和Set的相同部分。
所以
要删除所以的
'的'也可以用这种方法,
new一个容器c2,里面就放一个'的'然后对list调用removeAll(c2)
以上是关于C# List集合,在调用list.remove方法删除某一元素后触发事件,请问这个事件怎么写?的主要内容,如果未能解决你的问题,请参考以下文章
List 集合 remove 对象时出现 ConcurrentModificationException
普通for循环遍历List时调用remove方法,List没有遍历完。为啥?
java 集合 Arraylist<Character> list怎么移除字符? list.remove('的')不管用