委托(2.命名方法)

命名方法(C# 编程指南)

委托可以与命名方法关联。使用命名的方法对委托进行实例化时,该方法将作为参数传递,例如:

C#

复制代码

// Declare a delegate:

delegate void Del (int x);  //相当于函数指针类型的声明

// Define a named method:

void DoWork(int k) { /* ... */ }  //定义函数

// Instantiate the delegate using the method as a parameter:

Del d = obj.DoWork;   //相当于函数指针变量(d)声明,并实例化为Dowork

这被称为使用命名的方法。使用命名方法构造的委托可以封装静态方法实例方法在以前的 C# 版本中,使用命名的方法是对委托进行实例化的唯一方式。但是,在创建新方法的系统开销不必要时,C# 2.0 允许您对委托进行实例化,并立即指定委托将在被调用时处理的代码块。这些被称为匿名方法(C# 编程指南)

备注:

1.     作为委托参数传递的方法必须与委托声明具有相同的签名

2.     委托实例可以封装静态或实例方法。

3.     尽管委托可以使用 out 参数,但不推荐将其用于多路广播事件委托中,因为无法确定要调用哪个委托。

示例 1

以下是声明及使用委托的一个简单示例。注意,委托 Del 和关联的方法 MultiplyNumbers 具有相同的签名

C#

复制代码

// Declare a delegate

delegate void Del (int i, double j);

 

class MathClass {

static void Main ()

{

MathClass m = new MathClass();

// Delegate instantiation using "MultiplyNumbers" Del d = m.MultiplyNumbers;

// Invoke the delegate object. System.Console.WriteLine("Invoking the delegate            using 'MultiplyNumbers':");

for (int i = 1; i <= 5; i++)

{ d(i, 2); }

}

// Declare the associated method.

void MultiplyNumbers(int m, double n)

{

System.Console.Write(m * n + " ");

}

}

输出

Invoking the delegate using 'MultiplyNumbers':

2 4 6 8 10

示例 2

在下面的示例中,一个委托被同时映射到静态方法实例方法,并分别返回特定的信息

C#

复制代码

// Declare a delegate

delegate void Del ();

 

class SampleClass {

public void InstanceMethod()

{

System.Console.WriteLine("A message from the instance method.");

}

static public void StaticMethod()

{

System.Console.WriteLine("A message from the static method.");

}

}

 

class TestSampleClass {

static void Main ()

{

SampleClass sc = new SampleClass();

// Map the delegate to the instance method:

Del d = sc.InstanceMethod;

d();

// Map to the static method:

d = SampleClass.StaticMethod;

d();

}

}

输出

A message from the instance method.

A message from the static method.

来自:

http://msdn2.microsoft.com/zh-cn/library/98dc08ac(VS.80).aspx

 

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值