c#匿名方法用途_C#的匿名方法

重要:本文最后更新于2019-08-10 08:20:28,某些文章具有时效性,若有错误或已失效,请在下方留言或联系代码狗。

好像很多语言中都有匿名方法的概念,顾名思义,匿名方法就是没有名称的方法。写过程序的人都应该知道,我们在定义一个功能块时会给它取一个名字,那么我们就可以通过这个名字来使用这个方法或者是函数。匿名方法则没有这些,直接跟代码块。

C#开发教程

前面已经提到过,委托是用于引用与其具有相同标签的方法。换句话说,你可以使用委托对象调用可由委托引用的方法。匿名方法(Anonymous methods) 提供了一种传递代码块作为委托参数的技术。匿名方法是没有名称只有主体的方法。在C#匿名方法中你不需要指定返回类型,它是从方法主体内的 return 语句推断的。

编写匿名方法的语法

匿名方法是通过使用 delegate 关键字创建委托实例来声明的。例如:

delegate void NumberChanger(int n);

...

NumberChanger nc = delegate(int x)

{

Console.WriteLine("Anonymous Method: {0}", x);

};

代码块 Console.WriteLine(“Anonymous Method: {0}”, x); 是匿名方法的主体。

委托可以通过匿名方法调用,也可以通过命名方法调用,即,通过向委托对象传递方法参数。

例如:

nc(10);

下面的实例演示了匿名方法的概念:

using System;

delegate void NumberChanger(int n);

namespace DelegateAppl

{

class TestDelegate

{

static int num = 10;

public static void AddNum(int p)

{

num += p;

Console.WriteLine("Named Method: {0}", num);

}

public static void MultNum(int q)

{

num *= q;

Console.WriteLine("Named Method: {0}", num);

}

public static int getNum()

{

return num;

}

static void Main(string[] args)

{

// 使用匿名方法创建委托实例

NumberChanger nc = delegate(int x)

{

Console.WriteLine("Anonymous Method: {0}", x);

};

// 使用匿名方法调用委托

nc(10);

// 使用命名方法实例化委托

nc = new NumberChanger(AddNum);

// 使用命名方法调用委托

nc(5);

// 使用另一个命名方法实例化委托

nc = new NumberChanger(MultNum);

// 使用命名方法调用委托

nc(2);

Console.ReadKey();

}

}

}

当上面的代码被编译和执行时,它会产生下列结果:

Anonymous Method: 10

Named Method: 15

Named Method: 30

你可能感兴趣的:(c#匿名方法用途)