标签:style blog class c tar color
本文转载自深山老林
1.什么是委托?
委托是一种定义方法签名的类型,可以与具有兼容签名的任何方法关联。
2.委托有什么特点?
3.如何使用委托?
Demo:
using System; namespace ConsoleApplication28 { class Program { public static void FunctionA(string strMessage) { Console.WriteLine(strMessage); } public delegate void DelegateMethod(string strMessage); static void Main(string[] args) { DelegateMethod handler = FunctionA; handler("Hello Kevin"); } } }
4.匿名方法
在 2.0 之前的 C# 版本中,声明委托的唯一方法是使用命名方法。C# 2.0 引入了匿名方法,通过使用匿名方法,由于您不必创建单独的方法,因此减少了实例化委托所需的编码系统开销。以下是两个使用匿名方法的示例:
Demo1:
using System; using System.Windows.Forms; namespace WindowsFormsApplication10 { public partial class Form1 : Form { public Form1() { InitializeComponent(); button1.Click += delegate(object sender, EventArgs e) { MessageBox.Show("The box is click"); }; } private void Form1_Load(object sender, EventArgs e) { } } }
Demo2:
void StartThread() { Thread t1 = new Thread (delegate() { MessageBox.Show("Hello,"); MessageBox.Show("Kevin"); }); t1.Start(); }
5.合并委托(多路广播委托)
Demo:
using System; namespace ConsoleApplication29 { delegate void DelegageMethod(); class Program { static void A() { Console.WriteLine("A"); } static void B() { Console.WriteLine("B"); } static void Main(string[] args) { DelegageMethod a, b, c, d; a = A; b = B; c = a + b; d = c - a; Console.WriteLine("Invoking delegate a:"); a(); Console.WriteLine("Invoking delegate b:"); b(); Console.WriteLine("Invoking delegate c:"); c(); Console.WriteLine("Invoking delegate d:"); d(); } } }
标签:style blog class c tar color
原文地址:http://www.cnblogs.com/abc8023/p/3726072.html