C#委托的引見(delegate、Action、Func、predicate)。本站提示廣大學習愛好者:(C#委托的引見(delegate、Action、Func、predicate))文章只能為提供參考,不一定能成為您想要的結果。以下是C#委托的引見(delegate、Action、Func、predicate)正文
1.委托的聲明
(1). delegate
delegate我們常用到的一種聲明
Delegate至多0個參數,至少32個參數,可以無前往值,也可以指定前往值類型。
例:public delegate int MethodtDelegate(int x, int y);表示有兩個參數,並前往int型。
(2). Action
Action是無前往值的泛型委托。
Action 表示無參,無前往值的委托
Action<int,string> 表示有傳入參數int,string無前往值的委托
Action<int,string,bool> 表示有傳入參數int,string,bool無前往值的委托
Action<int,int,int,int> 表示有傳入4個int型參數,無前往值的委托
Action至多0個參數,至少16個參數,無前往值。
例:
public void Test<T>(Action<T> action,T p) { action(p); }
(3). Func
Func是有前往值的泛型委托
Func<int> 表示無參,前往值為int的委托
Func<object,string,int> 表示傳入參數為object, string 前往值為int的委托
Func<object,string,int> 表示傳入參數為object, string 前往值為int的委托
Func<T1,T2,,T3,int> 表示傳入參數為T1,T2,,T3(泛型)前往值為int的委托
Func至多0個參數,至少16個參數,依據前往值泛型前往。必需有前往值,不可void
例:
public int Test<T1,T2>(Func<T1,T2,int>func,T1 a,T2 b) { return func(a, b); }
(4) .predicate
predicate 是前往bool型的泛型委托
predicate<int> 表示傳入參數為int 前往bool的委托
Predicate有且只要一個參數,前往值固定為bool
例:public delegate bool Predicate<T> (T obj)
2.委托的運用
(1).Delegate的運用
public delegate int MethodDelegate(int x, int y); private static MethodDelegate method; static void Main(string[] args) { method = new MethodDelegate(Add); Console.WriteLine(method(10,20)); Console.ReadKey(); } private static int Add(int x, int y) { return x + y; }
(2).Action的運用
static void Main(string[] args) { Test<string>(Action,"Hello World!"); Test<int>(Action, 1000); Test<string>(p => { Console.WriteLine("{0}", p); }, "Hello World");//運用Lambda表達式定義委托 Console.ReadKey(); } public static void Test<T>(Action<T> action, T p) { action(p); } private static void Action(string s) { Console.WriteLine(s); } private static void Action(int s) { Console.WriteLine(s); }
可以運用 Action<T1, T2, T3, T4> 委托以參數方式傳遞辦法,而不必顯式聲明自定義的委托。 封裝的辦法必需與此委托定義的辦法簽名絕對應。 也就是說,封裝的辦法必需具有四個均經過值傳遞給它的參數,並且不能前往值。 (在 C# 中,該辦法必需前往 void)通常,這種辦法用於執行某個操作。
(3).Func的運用
static void Main(string[] args) { Console.WriteLine(Test<int,int>(Fun,100,200)); Console.ReadKey(); } public static int Test<T1, T2>(Func<T1, T2, int> func, T1 a, T2 b) { return func(a, b); } private static int Fun(int a, int b) { return a + b; }
(4). predicate的運用
泛型委托:表示定義一組條件並確定指定對象能否契合這些條件的辦法。此委托由 Array 和 List 類的幾種辦法運用,用於在集合中搜索元素。
static void Main(string[] args) { Point[] points = { new Point(100, 200), new Point(150, 250), new Point(250, 375), new Point(275, 395), new Point(295, 450) }; Point first = Array.Find(points, ProductGT10); Console.WriteLine("Found: X = {0}, Y = {1}", first.X, first.Y); Console.ReadKey(); } private static bool ProductGT10(Point p) { if (p.X * p.Y > 100000) { return true; } else { return false; } }
運用帶有 Array.Find 辦法的 Predicate 委托搜索 Point 構造的數組。假如 X 和 Y 字段的乘積大於 100,000,此委托表示的辦法 ProductGT10 將前往 true。Find 辦法為數組的每個元素調用此委托,在契合測試條件的第一個點處中止。
3.委托的清空
(1).在類中聲明清空委托辦法,順次循環去除委托援用。
辦法如下:
public MethodDelegate OnDelegate; public void ClearDelegate() { while (this.OnDelegate != null) { this.OnDelegate -= this.OnDelegate; } }
(2).假如在類中沒有聲明清空委托的辦法,我們可以應用GetInvocationList查詢出委托援用,然後停止去除。
辦法如下:
public MethodDelegate OnDelegate;
static void Main(string[] args) { Program test = new Program(); if (test.OnDelegate != null) { System.Delegate[] dels = test.OnDelegate.GetInvocationList(); for (int i = 0; i < dels.Length; i++) { test.OnDelegate -= dels[i] as MethodDelegate; } } }
4.委托的特點
委托相似於 C++ 函數指針,但它們是類型平安的。
委托允許將辦法作為參數停止傳遞。
委托可用於定義回調辦法。
委托可以鏈接在一同;例如,可以對一個事情調用多個辦法。
辦法不用與委托簽名完全婚配。
5.總結:
Delegate至多0個參數,至少32個參數,可以無前往值,也可以指定前往值類型
Func可以承受0個至16個傳入參數,必需具有前往值
Action可以承受0個至16個傳入參數,無前往值
Predicate只能承受一個傳入參數,前往值為bool類型
詳細參考:http://www.fengfly.com/plus/view-209140-1.html
http://www.cnblogs.com/foolishfox/archive/2010/09/16/1827964.html