C# 快速導覽 - delegate 委派
- Get link
- X
- Other Apps
google_ad_client = "ca-pub-1277342310653446";
google_ad_host = "ca-host-pub-1556223355139109";
google_ad_host_channel = "L0004";
google_ad_slot = "7187368929";
google_ad_width = 728;
google_ad_height = 15;

google_ad_client = "ca-pub-1277342310653446";
google_ad_host = "ca-host-pub-1556223355139109";
google_ad_host_channel = "L0004";
google_ad_slot = "4683073635";
google_ad_width = 728;
google_ad_height = 90;

google_ad_client = "ca-pub-1277342310653446";
google_ad_host = "ca-host-pub-1556223355139109";
google_ad_host_channel = "L0004";
google_ad_slot = "5435125940";
google_ad_width = 728;
google_ad_height = 15;

C# 快速導覽 - delegate 委派
委派是衍生自 .NET 中的 Delegate 類別 (class) ,這把方法 (method) 當作型態 (type) 來運用,使用關鍵字 (keyword) delegate 可設定具名或匿名的方法。
舉例如下
delegate void DemoDelegate(string message);
class Demo {
void DemoDelegateMethod(string message) {
System.Console.Write(message);
}
static void Main() {
Demo d = new Demo();
// 具名方法
DemoDelegate d1 = d.DemoDelegateMethod;
// 匿名方法
DemoDelegate d2 = delegate(string message) {
System.Console.WriteLine(" " + message);
};
d1("There");
d2("is no spoon.");
}
}
/* 《程式語言教學誌》的範例程式
http://pydoing.blogspot.com/
檔名:class29.cs
功能:示範 C# 程式
作者:張凱慶
時間:西元 2013 年 6 月 */
使用委派須先宣告方法的參數列及回傳值型態的方法名稱,注意這必須跟所要指派的方法相同
delegate void DemoDelegate(string message);
具名方法就是直接將自訂類別中的方法指派給委派型態的變數
// 具名方法
DemoDelegate d1 = d.DemoDelegateMethod;
匿名方法使用 delegate 自訂方法內容
// 匿名方法
DemoDelegate d2 = delegate(string message) {
System.Console.WriteLine(" " + message);
};
編譯執行,結果如下

中英文術語對照 | |
---|---|
類別 | class |
方法 | method |
型態 | type |
關鍵字 | keyword |
您可以繼續參考
類別
- 方法多載
- 建構子
- 解構子
- 權限修飾詞
- private 建構子
- partial 類別
- static 類別及成員
- static 建構子
- 巢狀類別
- 繼承
- 改寫父類別的方法
- abstract 類別
- virtual 成員
- sealed 類別與成員
- readonly 成員
- const 成員
- extern 外部方法
- delegate 委派
- 運算子多載
- 索引子
相關目錄
回 C# 快速導覽
回 C# 教材
回首頁
參考資料
Standard ECMA-334 C# Language Specification
msdn: delegate (C# 參考)
window.___gcfg = { 'lang': 'zh-TW' };
google_ad_client = "ca-pub-1277342310653446";
google_ad_host = "ca-host-pub-1556223355139109";
google_ad_host_channel = "L0004";
google_ad_slot = "5963585466";
google_ad_width = 728;
google_ad_height = 15;

- Get link
- X
- Other Apps
沒有留言:
張貼留言