博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
委托-利用GetInvocationList处理链式委托
阅读量:6596 次
发布时间:2019-06-24

本文共 3952 字,大约阅读时间需要 13 分钟。

在利用委托进行函数代理的时候,我们习惯于用+=来把一个符合条件的委托加入委托链之中,如果加入了多个这样的函数,怎么一一对这些函数取返回值呢?请看下面的一个实例:

View Code
using System;namespace GetInvocationListDaemonCAPP{    public delegate string TestDelegate();    public class Program    {        static void Main(string[] args)        {            DelegateClass delegateClass = new DelegateClass();            TestMethodOne one = new TestMethodOne();            TestMethodTwo two = new TestMethodTwo();            TestMethodThree three = new TestMethodThree();            TestMethodFour four = new TestMethodFour();            delegateClass.testDelegate += one.Say;            delegateClass.testDelegate += two.Say;            delegateClass.testDelegate += three.Say;            delegateClass.testDelegate += four.Say;            delegateClass.InvokeDelegate();            Console.ReadKey();        }    }    public class DelegateClass    {        public TestDelegate testDelegate;        public void InvokeDelegate()        {            if (null != testDelegate)            {                string resultStr = testDelegate();                Console.WriteLine(resultStr);            }        }    }    public class TestMethodOne    {        public string Say()        {            return "You called me from TestMethodOne~~~";        }    }    public class TestMethodTwo    {        public string Say()        {            return "You called me from TestMethodTwo~~~";        }    }    public class TestMethodThree    {        public string Say()        {            return "You called me from TestMethodThree~~~";        }    }    public class TestMethodFour    {        public string Say()        {            return "You called me from TestMethodFour~~~";        }    }}

在这个示例中,我用了一个委托代理了四个类型相同,返回值相同的函数,那么当我要获取这些函数的返回值的时候,会得到什么样的结果呢?

You called me from TestMethodFour~~~

结果就是上面的输出,原来,像这种方式的委托操作,会保留最后一个输出,前面几个都被OverWrite掉了。

为了解决这个问题,GetInvocationList方法出现了。

View Code
using System;namespace GetInvocationListDaemonCAPP{    public delegate string TestDelegate();    public class Program    {        static void Main(string[] args)        {            DelegateClass delegateClass = new DelegateClass();            TestMethodOne one = new TestMethodOne();            TestMethodTwo two = new TestMethodTwo();            TestMethodThree three = new TestMethodThree();            TestMethodFour four = new TestMethodFour();            delegateClass.testDelegate += one.Say;            delegateClass.testDelegate += two.Say;            delegateClass.testDelegate += three.Say;            delegateClass.testDelegate += four.Say;            delegateClass.InvokeDelegate();            Console.ReadKey();        }    }    public class DelegateClass    {        public TestDelegate testDelegate;        public void InvokeDelegate()        {            if (null != testDelegate)            {                //遍历委托链表                foreach (Delegate dele in testDelegate.GetInvocationList())                {                    //类型转换                    TestDelegate delegateClass = (TestDelegate)dele;                                        //调用并 得到返回结果                    string resultStr = delegateClass();                    Console.WriteLine(resultStr);                }            }        }    }    public class TestMethodOne    {        public string Say()        {            return "You called me from TestMethodOne~~~";        }    }    public class TestMethodTwo    {        public string Say()        {            return "You called me from TestMethodTwo~~~";        }    }    public class TestMethodThree    {        public string Say()        {            return "You called me from TestMethodThree~~~";        }    }    public class TestMethodFour    {        public string Say()        {            return "You called me from TestMethodFour~~~";        }    }}

这样操作后,得到的运行结果如下:

You called me from TestMethodOne~~~You called me from TestMethodTwo~~~You called me from TestMethodThree~~~You called me from TestMethodFour~~~

 

转载地址:http://vjpio.baihongyu.com/

你可能感兴趣的文章
线性规划与单纯形法---单纯形法的进一步讨论
查看>>
Linux下查看nginx,apache,mysql,php的编译参数
查看>>
我的友情链接
查看>>
又一次考试
查看>>
好记性烂笔头2
查看>>
C++中的继承和组合区别使用
查看>>
分享一些不错的学习网站
查看>>
使用RDP时发生AtBroker.exe error的解决方法
查看>>
windows server 2012 SVN 服务器配置
查看>>
一张图了解项目管理49个过程
查看>>
深究AngularJS——$sce的使用
查看>>
check_mk自定义监控插件监控IIS站点的性能计数器
查看>>
比较常用的几个正则表达式
查看>>
linux svn服务器搭建、客户端操作、备份与恢复
查看>>
IIS默认网站无法开启service unavailable!
查看>>
知识点②:spring boot 注入 / 静态注入
查看>>
Catalyst2层交换的3层通信
查看>>
Struts2中OGNL对各种方法的调用
查看>>
JavaScript强化教程——javascript性能优化
查看>>
输入框自动下拉补全
查看>>