C#委託的介紹(delegate、Action、Func、predicate)【轉】

轉自 http://www.cnblogs.com/akwwl/p/3232679.htmlhtml

委託是一個類,它定義了方法的類型,使得能夠將方法看成另外一個方法的參數來進行傳遞。事件是一種特殊的委託。數組

  1.委託的聲明安全

  (1). delegate函數

        delegate咱們經常使用到的一種聲明測試

    Delegate至少0個參數,至多32個參數,能夠無返回值,也能夠指定返回值類型。this

    例:public delegate int MethodtDelegate(int x, int y);表示有兩個參數,並返回int型。spa

  (2). Action指針

       Action是無返回值的泛型委託。code

   Action 表示無參,無返回值的委託htm

   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個至4個傳入參數,必須具備返回值

  Action能夠接受0個至4個傳入參數,無返回值

  Predicate只能接受一個傳入參數,返回值爲bool類型

 

  詳細參考:http://www.fengfly.com/plus/view-209140-1.html

       http://www.cnblogs.com/foolishfox/archive/2010/09/16/1827964.html

相關文章
相關標籤/搜索