使用强大的反射取消事件的订阅。

本文通过一个具体的C#示例展示了如何使用事件与委托。代码中定义了一个Subject类,该类拥有一个名为UpdateHandler的事件,该事件类型为自定义的UpdateDelegate委托。此外还定义了Observer和AnotherObserver两个静态类以及一个实例类Instantce,它们都实现了委托的方法。最后通过Client类中的Main方法演示了如何添加和移除事件监听。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

using System;
using System.Collections;
using System.Reflection;
//Delegate
delegate void UpdateDelegate();

//Subject
class Subject
{
    
public event UpdateDelegate UpdateHandler;

    
// Methods
    public void Attach(UpdateDelegate ud)
    
{
        UpdateHandler 
+= ud;
    }


    
public void Detach(UpdateDelegate ud)
    
{
        UpdateHandler 
-= ud;
    }


    
public void Notify()
    
{
        Console.WriteLine(
"-------------------------");
        
if (UpdateHandler != null) UpdateHandler();
        Console.WriteLine(
"-------------------------");
    }


}


// "ConcreteObserver"
class Observer
{
    
// Methods
    public static void Show()
    
{
        Console.WriteLine(
"Observer got an Notification!");
    }

}


class AnotherObserver
{
    
// Methods
    public static void Show()
    
{
        Console.WriteLine(
"AnotherObserver got an Notification!");
    }

}


class Instantce
{
    
public void Show()
    
{
        Console.WriteLine(
"Instantce got an Notification!");
    }

}


public class Client
{
    
public static void Main(string[] args)
    
{

        Subject a 
= new Subject();
        a.UpdateHandler 
+= new UpdateDelegate(Observer.Show);
        a.UpdateHandler 
+= new UpdateDelegate(AnotherObserver.Show);
        a.UpdateHandler 
+= new UpdateDelegate(AnotherObserver.Show);

        Instantce ins 
= new Instantce();
        a.UpdateHandler 
+= new UpdateDelegate(ins.Show);

        Type t 
= a.GetType();
        FieldInfo eventsPropertyInfo 
= t.GetField("UpdateHandler", BindingFlags.Instance | BindingFlags.NonPublic);
        UpdateDelegate eventHanlderList 
= eventsPropertyInfo.GetValue(a) as UpdateDelegate;

        Delegate[] dl 
= eventHanlderList.GetInvocationList();

        
foreach (Delegate d in dl)
        
{
            
// look up the contents in Delegate
            Console.WriteLine(d.Method.DeclaringType.ToString() + "." + d.Method.Name);
            
// Detach event handler
            a.Detach((UpdateDelegate)d);
        }

        
        a.Notify();       
    }

}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值