1. 程式人生 > >C# 委托知識總結

C# 委托知識總結

view 思路 hand 我想 出現 while text .... 否則

1.什麽是委托,為什麽要使用委托

我正在埋頭苦寫程序,突然想喝水,但是又不想自己去掉杯水而打斷自己的思路,於是我就想讓女朋友去給我倒水。她去給我倒水,首先我得讓她知道我想讓她幹什麽,通知她之後我可以繼續寫自己的程序,而倒水的工作就交給了她。這樣的過程就相當於一個委托。

在程序過程中,當程序正在處理某個事件的時候,我需要另外的程序代碼去輔助處理一些事情,於是委托另一個程序模塊去處理,而委托就可以達到這種目的,我可以利用委托通知另外的程序模塊,該去調用哪個函數方法。委托其實就起到了這樣一個作用,將函數簽名傳遞到了另一個函數中。或許這樣講還是有些模糊,看看後面的具體實例。

2.委托的定義

delegate int Add(int num1,int num2);

delegate void ConvertNum(string result);

上面是定義兩個委托的例子,其實很簡單。聲明一個委托使用delegate關鍵字,上面分別是定義的帶返回值的委托和不帶返回值的委托,

兩個委托都有傳遞參數,當然也可以不傳遞參數。其實委托也是一個類,委托派生為System.MulticastDelegate,而System.MulticastDelegate

又繼承System.Delegate,如果你知道這個也就明白委托其實是一個特殊的類。

技術分享圖片
委托的簡單實用例子Code highlighting produced by Actipro CodeHighlighter (freeware)http://
www.CodeHighlighter.com/--> 1 public delegate string TeaDelegate(string spText); public class DelegateSource { public void TestDelegate() { Operator op = new Operator(); TeaDelegate tea = new TeaDelegate(op.GetTea); Console.WriteLine("去給我倒杯水
"); Console.WriteLine(); string result=tea("去給我倒杯水"); Thread.Sleep(5000); Console.WriteLine(result); Console.WriteLine(); } } public class Operator { /// <summary> /// 確定是否還有水 /// </summary> private bool flag = true; public string GetTea(string spText) { if (spText == "去給我倒杯水") { if (flag) { return "老公,茶來了"; } else { return "老公,沒有水了"; } } return "等待......."; } }
View Code

輸出結果

技術分享圖片

上面使用最普通的一種方式來定義了一個委托的使用,這個例子雖然很簡單,但是能夠很形象的描述委托的使用。

3.委托的三種形式

(1).推斷

技術分享圖片
推斷委托例子Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 public delegate string TeaDelegate(string spText);

    public class DelegateSource
    {
        public void TestDelegate()
        {
            Operator op = new Operator();
            TeaDelegate tea = op.GetTea;
            Console.WriteLine("去給我倒杯水");
            Console.WriteLine();
            string result=tea("去給我倒杯水");
            Thread.Sleep(5000);
            Console.WriteLine(result);
            Console.WriteLine();
        }
    }

    public class Operator
    {
        /// <summary>
        /// 確定是否還有水
        /// </summary>
        private bool flag = true;

        public string GetTea(string spText)
        {
            if (spText == "去給我倒杯水")
            {
                if (flag)
                {
                    return "老公,茶來了";
                }
                else
                {
                    return "老公,沒有水了";
                }
            }
            return "等待.......";
        }
    }
View Code

在委托定義的例子中我們看到委托的使用方法是在委托實例化的時候指定的[new DelegateName(FunctionName)],這裏可能表述不是太但是代碼應該看得白了。 而委托的推斷,並沒有new 委托這個步驟,而是直接將Function 指定給委托。

(2).匿名函數

技術分享圖片
匿名委托例子Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 public delegate string TeaDelegate(string spText);

    public class DelegateSource
    {
        public void TestDelegate()
        {
            Operator op = new Operator();
            bool flag = true;
            TeaDelegate tea = delegate(string spText)
            {
                if (spText == "去給我倒杯水")
                {
                    if (flag)
                    {
                        return "老公,茶來了";
                    }
                    else
                    {
                        return "老公,沒有水了";
                    }
                }
                return "等待.......";
            };

            Console.WriteLine("去給我倒杯水");
            Console.WriteLine();
            string result=tea("去給我倒杯水");
            Thread.Sleep(5000);
            Console.WriteLine(result);
            Console.WriteLine();
        }
    }
View Code

至於匿名委托,給人的感覺更為直接了,都不用顯示的指定方法名,因為根本沒有方法,而是指定的匿名方法。匿名方法在.NET 中提高了

代碼的可讀性和優雅性。對於更多操作較少的方法直接寫為匿名函數,這樣會大大提高代碼的可讀性。這裏有兩個值得註意的地方: 第一,不能使用

跳轉語句跳轉到該匿名方法外,第二 不能使用ref,out修飾的參數

(3).多播委托

技術分享圖片
多播委托例子Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 public delegate string TeaDelegate(string spText);

    public class DelegateSource
    {
        public void TestDelegate()
        {
            Operator op = new Operator();

            TeaDelegate tea1 = op.GetTea;
            TeaDelegate tea2 = op.Speak;
            TeaDelegate tea = tea1 + tea2;

            Console.WriteLine("去給我倒杯水");
            Console.WriteLine();
            string result=tea("去給我倒杯水");
            Thread.Sleep(5000);
            Console.WriteLine(result);
            Console.WriteLine();
        }
    }

    public class Operator
    {
        /// <summary>
        /// 確定是否還有水
        /// </summary>
        private bool flag = true;

        public string GetTea(string spText)
        {
            if (spText == "去給我倒杯水")
            {
                if (flag)
                {
                    return "老公,茶來了";
                }
                else
                {
                    return "老公,沒有水了";
                }
            }
            return "等待.......";
        }


        public string Speak(string spText)
        {
            Console.WriteLine("\n去把我的設計圖稿拿來");
            return null;
        }
    }
View Code

還是上面的那個實例,我不盡想讓女朋友去給我掉杯水,還讓她幫我將程序設計圖稿拿過來。這個時候做的就不是一件事了,而是多件。

程序中也有很多這種情況,於是我們需要多播委托,在一個委托上指定多個執行方法,這是在程序中可以行的。上面提到了,委托直接繼承於

System.MulticastDelegate,正是因為這個類可以實現多播委托。如果調用多播委托,就可以按順序連續調用多個方法。為此,委托的簽名就必須返回void;否則,就只能得到委托調用的最後一個方法的結果。所以在上面的這段代碼中是得不到結果的

4.事件

使用C#編程,無論是WinForm,WebForm 給人很難忘得就是它的控件,而他們的控件庫使用方式都是使用使用事件驅動模式,而事件驅動模式卻少不了委托。話不多說,看代碼能夠更清好的理解事件和委托之間的聯系.

技術分享圖片
事件的使用Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 public delegate void MyDelegate(string name);

    public class EventSource
    {
        public event MyDelegate Event_Delegate;

        public void SetCustomer(string name)
        {
            Console.WriteLine("事件發生.....\n");
            Console.WriteLine("hi! "+name);
        }

        public void TestEvent()
        {
            EventSource source = new EventSource();
            Console.WriteLine("訂閱事件.....\n");
            source.Event_Delegate += new MyDelegate(source.SetCustomer);
            Console.WriteLine("觸發事件.....\n");
            source.Event_Delegate("hechen");
            Console.WriteLine("..................");
        }
    }
View Code

上面的代碼中我們定義了一個委托,然後定義了一個類EventSource,這個類中聲明了一個事件。定義一個事件使用event 關鍵字,定義一

個event必須指定這個event傳遞消息的委托,在觸發事件之前必需訂閱事件,我們使用+= new 語法來訂閱一個事件,也就相當於實例化一個事件。

當我們觸發事件的時候,就會調用相應的方法去處理。

5. 泛型委托

委托是類型安全的引用,泛型委托就和我們常用的泛型類一樣,這個類在使用的時候才能確定類型.通過泛型委托,我們可以在委托傳遞參數

之後知道它的類型.在.NET中有一個很典型的泛型委托:

public delegate voie EventHandler<TEventArgs>(object sender,TEventArgs e) where TEventArgs:EventArgs.

這是一個非常有特色的泛型委托,可能我們用的比較少,但是作用是不能忽視的。 我們看看三個非常具有代表性的泛型委托.現在.NET4.0已經出來了,但是泛型委托.NET2.0就出來了,Linq 大家用的那叫一個甜,

為啥 函數式編程風格,匿名方法,Lamda表達式表達式使用是如此的魅力。但是大家仔細觀察過沒有,Linq 中的方法有幾個經常出現的參數:

Action<T>,Predicate<T>,Func<T, Result>

Func<T, E>:封裝一個具有一個參數並返回 E 參數指定的類型值的方法,T 是這個委托封裝方法的參數類型,E是方法的返回值類型。當然Func<T, Result> 只是其中的一種情況,這個委托還有其他的幾種情況:Func<T> 這個是方法沒有參數,返回值類型是T;Func<T1,T2,Result> 這個方法有兩個參數,類型分別為T1,T2,返回值是Result,還有Func<T1,T2,T3,Result>,Func<T1,T2,T3,T4,Result> 這幾中情況,具體情況就不介紹了.我們還可以通過擴展類型,擴展為更多的參數.

技術分享圖片
Func 委托的使用Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 public void TestFunc()
        { 
            TEventSource eventSource=new TEventSource();
            Func<string, string> func = eventSource.GetTea;
            string result = func("");
            Console.WriteLine(result);
        }

        public string GetTea(string context)
        {
            if (context == "")
            {
                return "茶來了";
            }
            else
            {
                return "設計稿子來了";
            }
        }
View Code

Action<T>:封裝一個方法,該方法只采用一個參數並且不返回值,包括Action<T>,Action<T1,T2>,Action<T1,T2,T3>,Action<T1,T2,T3,T4> 這幾種情況,也可以通過擴展方法去擴展參數的個數 。

技術分享圖片
Action 委托使用例子Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 public void TestAction()
        {
            TEventSource eventSource = new TEventSource();
            Action<string> action = eventSource.Speak;
            action("Action<T> 泛型委托");
        }

        public void Speak(string context)
        {
            Console.WriteLine(context);
        }
Action 委托使用例子

Predicate<T>:表示定義一組條件並確定指定對象是否符合這些條件的方法。該委托返回的是一個bool類型的值,如果比較滿足條件

返回true,否則返回false.其實上面的Func 委托可以包含這個委托.不過這個委托和上面的兩個不一樣,它只有一種類型

技術分享圖片
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 public void TestPredicate()
        {
            TEventSource eventSource = new TEventSource();
            Predicate<int> predicate = eventSource.IsRigth;
            Console.WriteLine(predicate(0));
        }

        public bool IsRigth(int value)
        {
            if (value == 0)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
Predicate 委托使用例子

6.異步委托

投票技術: 委托其實相當於一個線程,使用投票技術是使用異步委托的一種實現方式.Delegate類提供了方法BeginInvoke(),可以傳送委托類型定義的輸入參數,其返回類型為IAsyncResult。IAsyncResult的IsCompleted屬性可以判斷委托任務是否完成

技術分享圖片
/// <summary>
    /// 使用投票操作完成委托任務
    /// </summary>
    public class VoteDelegate
    {
        /// <summary>
        /// 休眠特定時間執行操作
        /// </summary>
        /// <param name="data"></param>
        /// <param name="ms"></param>
        /// <returns></returns>
        public static int TakeWork(int data, int ms)
        {
            Console.WriteLine("開始調用TakeWork方法");
            Thread.Sleep(ms);
            Console.WriteLine("結束調用TakeWork方法");
            return data + 10;
        }

        public void TestDelegate()
        {
            DelegateVote voteDel = TakeWork;
            IAsyncResult result = voteDel.BeginInvoke(1,5000,null,null);
            while (result.IsCompleted == false)
            {
                Console.WriteLine("等待......");
                Thread.Sleep(500);
            }
            int value = voteDel.EndInvoke(result);
            Console.WriteLine("委托調用結果:  "+value);
        }
    }
異步委托投票技術

等待句柄:等待句柄是使用AsyncWaitHandle屬性訪問,返回一個WaitHandle類型的對象,它可以等待委托線程完成其任務。在這個參數中可以設置最大的等待時間。

技術分享圖片
  public delegate string WaitDelegate(string content);

    public class WaitHandlerDelegate
    {
        public void TestWaitHander()
        {
            WaitDelegate del = GetTea;
            IAsyncResult ar = del.BeginInvoke("hechen", null, null);
            while (true)
            {
                Console.Write(".");
                if (ar.AsyncWaitHandle.WaitOne(50, false))
                {
                    break;
                }
            }
            string result=del.EndInvoke(ar);
            Console.WriteLine(result);

        }

        public static string GetTea(string content)
        {
            return "茶來了  "+content;
        }
    }
異步委托等待句柄

異步回調:這個方式和投票技術有點類似,不過在投票方式中BeginInvoke()方法第三個參數指定了一個方法簽名,而這個方法參數接收IAsyncResult 類型的參數。

技術分享圖片
 public class AsyncresultDelegate
    {
        public void TestAsync()
        {
            AsyDelegate del = GetTea;
            del.BeginInvoke("hechen", delegate(IAsyncResult ar) {
                Thread.Sleep(5000);
                string result = del.EndInvoke(ar);
                Console.WriteLine(result);
            }, null);
            for (int i = 0; i < 100; i++)
            {
                Console.WriteLine("等待.....");
                Thread.Sleep(1000);
            }
        }

        public static string GetTea(string content)
        {
            return "茶來了  " + content;
        }
    }
異步委托回調函數

C# 委托知識總結