C# Programming Guide

Anonymous Functions

Lambda Expressions

Anonymous Methods

In versions of C# before 2.0, the only way to declare a delegate was to use named methods.

在C#2.0以前,声明委托的唯一方式就是使用命名方法。

C# 2.0 introduced anonymous methods and in C# 3.0 and later, lambda expressions supersede anonymous methods as the preferred way to write inline code.

在C#2.0中介绍了匿名方法,在C#3.0以及之后的版本中,lambda表达式取代了匿名方法,成为编写内联代码的首选。

However, the information about anonymous methods in this topic also applies to lambda expressions.

然而,本主题关于匿名方法的信息同样使用与lambda表达式

There is one case in which an anonymous method provides functionality not found in lambda expressions.

某种情况下,匿名方法能提供lambda表达式所不具备的功能

Anonymous methods enable you to omit the parameter list.

匿名方法确保你可以使用参数忽略列表

This means that an anonymous method can be converted to delegates with a variety of signatures.

这意味着,匿名方法可以被转换为具有各种签名的委托。

This is not possible with lambda expressions.

对于lambda表达式而言,这是不可能的。

Creating anonymous methods is essentially a way to pass a code block as a delegate parameter. Here are two examples:

创建匿名方法实质上是一种"将代码块作为委托参数进行传递"的方式。这里有两个示例:

// Create a handler for a click event.
button1.Click += delegate(System.Object o, System.EventArgs e)
{ System.Windows.Forms.MessageBox.Show("Click!"); };
// Create a delegate.
delegate void Del(int x); // Instantiate the delegate using an anonymous method.
Del d = delegate(int k) { /* ... */ };

By using anonymous methods, you reduce the coding overhead in instantiating delegates because you do not have to create a separate method.

通过使用匿名方法,你可以降低实例化委托的编码开销,因为你无须创建一个单独的方法。

For example, specifying a code block instead of a delegate can be useful in a situation when having to create a method might seem an unnecessary overhead.

比如,指定代码块而不是委托,当创建一个方法可能造成不必要的开销的时候很有用。

A good example would be when you start a new thread. This class creates a thread and also contains the code that the thread executes without creating an additional method for the delegate

开启一个新线程会是一个很好的例子。该类创建了一个线程,并且包含了线程将要执行的代码,还不需要为委托创建额外的方法。

void StartThread()
{
System.Threading.Thread t1 = new System.Threading.Thread
(delegate()
{
System.Console.Write("Hello, ");
System.Console.WriteLine("World!");
});
t1.Start();
}

C#入门经典的解释:

除了定义事件处理方法之外,还可以使用匿名方法。匿名方法实际上是传统意义上不存在的方法,它不是某一个类的方法,而纯粹是用作委托目的而创建的。

要创建匿名方法,需要使用下面的代码:

delegate(parameters)

{

//Anonymous method code

};

其中parameters是一个参数列表,这些参数匹配正在实例化的委托类型,由匿名方法的代码使用,例如

delegate(Connection source,MessageArrivedEventArgs e)

{

//Anonymous method code matching MessageHandler event in Ch13Ex03

}

使用这段代码就可以完全绕过Ch13Ex03中的DisplayMessage方法:

myConnection1.MessageArrived+=

delegate(Connection source,MessageArrivedEventArgs e)

{

//code

}

对于匿名方法要注意,对于包含它们的代码块来说,它们是局部的,可以访问这个区域内的局部变量。如果使用这样一个变量,它就称为外部变量。

外部变量在超出作用域时,是不会删除的,这与其他的局部变量不同,在使用它们的匿名方法被释放时,外部变量才会删除。

这比我们希望的时间晚一些,所以要格外小心。

C# Programming Guide-->Statements, Expressions, and Operators-->Anonymous Functions的更多相关文章

  1. [IoLanguage]Io Programming Guide[转]

    Io Programming Guide     Introduction Perspective Getting Started Downloading Installing Binaries Ru ...

  2. Extension Methods (C# Programming Guide)

    https://msdn.microsoft.com/en-us//library/bb383977.aspx private static void Dump(this ArraySegment&l ...

  3. Structured Streaming编程 Programming Guide

    Structured Streaming编程 Programming Guide Overview Quick Example Programming Model Basic Concepts Han ...

  4. Flink DataSet API Programming Guide

     https://ci.apache.org/projects/flink/flink-docs-release-0.10/apis/programming_guide.html   Example ...

  5. 对Spark2.2.0文档的学习3-Spark Programming Guide

    Spark Programming Guide Link:http://spark.apache.org/docs/2.2.0/rdd-programming-guide.html 每个Spark A ...

  6. Spark Streaming Programming Guide

    参考,http://spark.incubator.apache.org/docs/latest/streaming-programming-guide.html Overview SparkStre ...

  7. Apache Spark 2.2.0 中文文档 - GraphX Programming Guide | ApacheCN

    GraphX Programming Guide 概述 入门 属性 Graph 示例属性 Graph Graph 运算符 运算符的汇总表 Property 运算符 Structural 运算符 Joi ...

  8. Interfaces (C# Programming Guide)

    https://msdn.microsoft.com/en-us/library/ms173156.aspx An interface contains definitions for a group ...

  9. 串口通信编程向导 Serial Programming Guide for POSIX Operating Systems

    https://www.cmrr.umn.edu/~strupp/serial.html#CONTENTS Introduction Chapter 1, Basics of Serial Commu ...

  10. 【IOS笔记】View Programming Guide for iOS -1

    原文:View Programming Guide for iOS View and Window Architecture Views and windows present your applic ...

随机推荐

  1. spring boot 系列学习记录

    ——初始篇 结束了短学期的课程,初步学习了ssm框架,凭借这些学到的知识完成了短学期的任务-----点餐系统. 通过学长了解到了spring boot ,自己对spring cloud有所耳闻,但是s ...

  2. 4.2 - MySQL

    一.表关系 请创建如下表,并创建相关约束 班级表:class 学生表:student cid caption grade_id sid sname gender class_id 1 一年一班 1 1 ...

  3. Mysql日常操作

    创建用户并授权 grant all privileges on test.* to "test"@"localhost" identified by " ...

  4. 哈密顿绕行世界问题---hdu2181(全排列问题)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2181 题意很容易理解,dfs就可以了 #include <iostream> #inclu ...

  5. Flask使用SQLAlchemy连接mysql

    表操作 models.py from sqlalchemy.ext.declarative import declarative_base from sqlalchemy import Column ...

  6. Flask视图函数与模板语法

    1.Django中的CBV模式 ​ 2.Flask中的CBV和FBV def auth(func):     def inner(*args, **kwargs):         result =  ...

  7. 启动tomcat时为tomcat指定JDK

    背景:服务器环境:JDK1.7,Tomcat8 需求: 需要在Tomcat8部署项目,该项目需要运行在JDK1.8 将Tomcat8和JDK1.8上传至服务器,然后解压在指定目录下. 为tomcat指 ...

  8. mongoDb,下载及启动

     mongoDb下载 https://www.mongodb.com/download-center 可视化工具Robomongo下载 https://robomongo.org/download m ...

  9. linux怎样使用top命令查看系统状态

    有时候有很多问题只有在线上或者预发环境才能发现,而线上又不能Debug,所以线上问题定位就只能看日志,系统状态和Dump线程. Linux系统可以通过top命令查看系统的CPU.内存.运行时间.交换分 ...

  10. Delphi APP 開發入門(七)通知與雲端推播

    Delphi APP 開發入門(七)通知與雲端推播 分享: Share on facebookShare on twitterShare on google_plusone_share   閲讀次數: ...