C# 委托 Delegate

c# 委托 delegate

c# 中的委托(delegate)類似于 c 或 c++ 中函數(shù)的指針。委托(delegate) 是存有對(duì)某個(gè)方法的引用的一種引用類型變量。引用可在運(yùn)行時(shí)被改變。

委托(delegate)特別用于實(shí)現(xiàn)事件和回調(diào)方法。所有的委托(delegate)都派生自 system.delegate 類。

 

1. 聲明委托(delegate)

委托聲明決定了可由該委托引用的方法。委托可指向一個(gè)與其具有相同標(biāo)簽的方法。

例如,假設(shè)有一個(gè)委托:

public delegate int mydelegate (string s);

上面的委托可被用于引用任何一個(gè)帶有一個(gè)單一的 string 參數(shù)的方法,并返回一個(gè) int 類型變量。

聲明委托的語(yǔ)法如下:

delegate <return type> <delegate-name> <parameter list>

 

2. 范例化委托(delegate)

一旦聲明了委托類型,委托對(duì)象必須使用 new 關(guān)鍵字來創(chuàng)建,且與一個(gè)特定的方法有關(guān)。當(dāng)創(chuàng)建委托時(shí),傳遞到 new 語(yǔ)句的參數(shù)就像方法調(diào)用一樣書寫,但是不帶有參數(shù)。例如:

public delegate void printstring(string s);
...
printstring ps1 = new printstring(writetoscreen);
printstring ps2 = new printstring(writetofile);

下面的范例演示了委托的聲明、范例化和使用,該委托可用于引用帶有一個(gè)整型參數(shù)的方法,并返回一個(gè)整型值。

using system;

delegate int numberchanger(int n);
namespace delegateappl
{
? ?class testdelegate
? ?{
? ? ? static int num = 10;
? ? ? public static int addnum(int p)
? ? ? {
? ? ? ? ?num += p;
? ? ? ? ?return num;
? ? ? }

? ? ? public static int multnum(int q)
? ? ? {
? ? ? ? ?num *= q;
? ? ? ? ?return num;
? ? ? }
? ? ? public static int getnum()
? ? ? {
? ? ? ? ?return num;
? ? ? }

? ? ? static void main(string[] args)
? ? ? {
? ? ? ? ?// 創(chuàng)建委托范例
? ? ? ? ?numberchanger nc1 = new numberchanger(addnum);
? ? ? ? ?numberchanger nc2 = new numberchanger(multnum);
? ? ? ? ?// 使用委托對(duì)象調(diào)用方法
? ? ? ? ?nc1(25);
? ? ? ? ?console.writeline("value of num: {0}", getnum());
? ? ? ? ?nc2(5);
? ? ? ? ?console.writeline("value of num: {0}", getnum());
? ? ? ? ?console.readkey();
? ? ? }
? ?}
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

value of num: 35
value of num: 175

 

3. 委托的多播(multicasting of a delegate)

委托對(duì)象可使用 "+" 運(yùn)算符進(jìn)行合并。一個(gè)合并委托調(diào)用它所合并的兩個(gè)委托。只有相同類型的委托可被合并。"-" 運(yùn)算符可用于從合并的委托中移除組件委托。

使用委托的這個(gè)有用的特點(diǎn),您可以創(chuàng)建一個(gè)委托被調(diào)用時(shí)要調(diào)用的方法的調(diào)用列表。這被稱為委托的 多播(multicasting),也叫組播。下面的程序演示了委托的多播:

using system;

delegate int numberchanger(int n);
namespace delegateappl
{
? ?class testdelegate
? ?{
? ? ? static int num = 10;
? ? ? public static int addnum(int p)
? ? ? {
? ? ? ? ?num += p;
? ? ? ? ?return num;
? ? ? }

? ? ? public static int multnum(int q)
? ? ? {
? ? ? ? ?num *= q;
? ? ? ? ?return num;
? ? ? }
? ? ? public static int getnum()
? ? ? {
? ? ? ? ?return num;
? ? ? }

? ? ? static void main(string[] args)
? ? ? {
? ? ? ? ?// 創(chuàng)建委托范例
? ? ? ? ?numberchanger nc;
? ? ? ? ?numberchanger nc1 = new numberchanger(addnum);
? ? ? ? ?numberchanger nc2 = new numberchanger(multnum);
? ? ? ? ?nc = nc1;
? ? ? ? ?nc += nc2;
? ? ? ? ?// 調(diào)用多播
? ? ? ? ?nc(5);
? ? ? ? ?console.writeline("value of num: {0}", getnum());
? ? ? ? ?console.readkey();
? ? ? }
? ?}
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

value of num: 75

 

4. 委托(delegate)的用途

下面的范例演示了委托的用法。委托 printstring 可用于引用帶有一個(gè)字符串作為輸入的方法,并不返回任何東西。

我們使用這個(gè)委托來調(diào)用兩個(gè)方法,第一個(gè)把字符串打印到控制臺(tái),第二個(gè)把字符串打印到文件:

using system;
using system.io;

namespace delegateappl
{
? ?class printstring
? ?{
? ? ? static filestream fs;
? ? ? static streamwriter sw;
? ? ? // 委托聲明
? ? ? public delegate void printstring(string s);

? ? ? // 該方法打印到控制臺(tái)
? ? ? public static void writetoscreen(string str)
? ? ? {
? ? ? ? ?console.writeline("the string is: {0}", str);
? ? ? }
? ? ? // 該方法打印到文件
? ? ? public static void writetofile(string s)
? ? ? {
? ? ? ? ?fs = new filestream("c:\\message.txt", filemode.append, fileaccess.write);
? ? ? ? ?sw = new streamwriter(fs);
? ? ? ? ?sw.writeline(s);
? ? ? ? ?sw.flush();
? ? ? ? ?sw.close();
? ? ? ? ?fs.close();
? ? ? }
? ? ? // 該方法把委托作為參數(shù),并使用它調(diào)用方法
? ? ? public static void sendstring(printstring ps)
? ? ? {
? ? ? ? ?ps("hello world");
? ? ? }
? ? ? static void main(string[] args)
? ? ? {
? ? ? ? ?printstring ps1 = new printstring(writetoscreen);
? ? ? ? ?printstring ps2 = new printstring(writetofile);
? ? ? ? ?sendstring(ps1);
? ? ? ? ?sendstring(ps2);
? ? ? ? ?console.readkey();
? ? ? }
? ?}
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

the string is: hello world

下一節(jié):c# 事件 event

c# 教程

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频