文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C# 委托随笔

C# 委托随笔

时间:2011-03-04  来源:suxin

     

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace DelegateDemo
{
    class Program
    {
        delegate void callBackdelegate(string strMessage);
        static void Main(string[] args)
        {
            callBackdelegate callback = ResultCallback;
            AddNumber(100, 200, callback);
            Console.ReadLine();
        }
        static void AddNumber(int num1, int num2,callBackdelegate callBack)
        {
            int result = num1 + num2;
            callBack("Result is : "+result.ToString());
        }
        static void ResultCallback(string strMessage)
        {
            Console.WriteLine(strMessage);
        }
    }
}

  上面的示例只是同步回调,也就是说在执行函数AddNumber时(假设该函数执行很长时间),UI线程是会阻塞的,至到该函数执行完毕。这就给用户带来了不好的体验。其实我们在日常的软件开发中,用的最多的就是异步回调技术,该技术是指 在执行函数AddNumber时,UI线程不会阻塞。下面我们就用异步回调重写上面的示例:

     

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Remoting.Messaging;

namespace DelegateDemo
{
    class Program
    {
        //声明一个委托,签名与AddNumber函数相同
        delegate int MethodDelegate(int num1, int num2);
        static void Main(string[] args)
        {
            MethodDelegate del = AddNumber;
            AsyncCallback callback = new AsyncCallback(ResultCallBack);

            IAsyncResult result = del.BeginInvoke(100, 200, callback, null);
            Console.WriteLine("UI线程继续执行。。。。");
            Console.ReadLine();
        }
        static int AddNumber(int num1, int num2)
        {
            //用线程模拟一个耗时的操作
            System.Threading.Thread.Sleep(5000);
            return num1 + num2;
        }
        static void ResultCallBack(IAsyncResult ar)
        {
            //将ar强制转换为 AsyncResult 类型 该类型需引入命名空间System.Runtime.Remoting.Messaging
            MethodDelegate del = (MethodDelegate)((AsyncResult)ar).AsyncDelegate;
            int result = del.EndInvoke(ar);
            Console.WriteLine("The result is :" + result.ToString());
        }
    }
}

   以上代码实现了对函数AddNumber的异步回调。

    

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载