码迷,mamicode.com
首页 > 其他好文 > 详细

delegate

时间:2014-06-26 20:50:15      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   tar   

delegate

  delegate定义了一个函数引用类型,犹如C++中的typedef,也犹如Objc中的Block(在捕获变量上有点差异)。

  1、有名方法,delegate捕获的方法可以是实例方法或静态方法。

bubuko.com,布布扣
 1 // Declare a delegate
 2 delegate void Del();
 3 
 4 class SampleClass
 5 {
 6     public void InstanceMethod()
 7     {
 8         System.Console.WriteLine("A message from the instance method.");
 9     }
10 
11     static public void StaticMethod()
12     {
13         System.Console.WriteLine("A message from the static method.");
14     }
15 }
16 
17 class TestSampleClass
18 {
19     static void Main()
20     {
21         SampleClass sc = new SampleClass();
22 
23         // Map the delegate to the instance method:
24         Del d = sc.InstanceMethod;
25         d();
26 
27         // Map to the static method:
28         d = SampleClass.StaticMethod;
29         d();
30     }
31 }
32 /* Output:
33     A message from the instance method.
34     A message from the static method.
35 */
View Code

  2、匿名方法。

  bubuko.com,布布扣

  也可以不创建delegate对象:

  bubuko.com,布布扣

  对于捕获,编译器会创建额外的类来容纳变量,而之前定义该变量的类的实例拥有该变量的引用,捕获到该变量的匿名方法同样也拥有该变量的引用。所以,方法内的变量并不是我们想象中存储在方法对应的栈帧中。我们知道,所有引用都是在拥有该引用的实例的堆上,除非委托被回收,否则该引用就不会被销毁。

参考:

1、http://msdn.microsoft.com/zh-cn/library/98dc08ac(v=vs.90).aspx

2、http://msdn.microsoft.com/zh-cn/library/0yw3tz5k(v=vs.90).aspx

3、http://www.cnblogs.com/wenjiang/archive/2013/03/12/2954913.html

delegate,布布扣,bubuko.com

delegate

标签:style   class   blog   code   http   tar   

原文地址:http://www.cnblogs.com/tekkaman/p/3808149.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!