BeginInvoke與EndInvoke方法解決多線程接收委託返回值問題

BeginInvoke與EndInvoke方法解決多線程接收委託返回值問題
html

原文:http://www.sufeinet.com/thread-3707-1-1.html
     你們能夠先看看我上次寫的文章多線程

http://www.sufeinet.com/thread-3556-1-1.html
在這個例子中只是使用委託,在子線程中設置主線程的數據,而沒有說明怎麼樣取返回值,
當今天有一個用戶在問這個問題時我感受應該寫一下了
其實這個很簡單先看下面界面this

這是怎麼實現的呢其實
很簡單
第一步定義一個委託spa

//建立一個委託,是爲訪問TextBox控件服務的。
        public delegate string UpdateTxt(string msg);
        //定義一個委託變量
        public UpdateTxt updateTxt;

 第二步是實例化一下線程

 private void Form1_Load_1(object sender, EventArgs e)
        {
            //實例化委託
            updateTxt = new UpdateTxt(UpdateTxtMethod);
        }

 

指定的UpdateTxtMethod該當以下顯示code

 //修改TextBox值的方法。
        public string UpdateTxtMethod(string msg)
        {
            richTextBox1.AppendText(msg + "\r\n");
            return msg;
        }

 這個主要是用來設置richTextBox1的值的。orm

第三步開啓一個線程htm

 //開啓線程
        private void button1_Click(object sender, EventArgs e)
        {
            Thread objThread = new Thread(new ThreadStart(delegate
            {
                ThreadMethodTxt(textBox1.Text.Trim());
            }));
            objThread.Start();
        }

 線程主要是用來執行這個方法的ThreadMethodTxt對象

這個方法代碼以下blog

    //此爲在非建立線程中的調用方法,實際上是使用TextBox的Invoke方法。
        public void ThreadMethodTxt(string n)
        {
            IAsyncResult ar = this.BeginInvoke(updateTxt, n);
            //這裏就是你要的返回數據
            string result = this.EndInvoke(ar).ToString();

            this.BeginInvoke(updateTxt, "返回數據:" + result);
        }

 

其實就是這兩句

 IAsyncResult ar = this.BeginInvoke(updateTxt, n);
            //這裏就是你要的返回數據
            string result = this.EndInvoke(ar).ToString();

這樣就能夠取到返回的數據了this.EndInvoke(ar)返回的是一個對象,如是其它類型你們能夠使用Convert進行相應的轉化就好了。

下面是所有代碼你們看看吧

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;

namespace WindowsFormsApplication3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        //建立一個委託,是爲訪問TextBox控件服務的。
        public delegate string UpdateTxt(string msg);
        //定義一個委託變量
        public UpdateTxt updateTxt;

        //修改TextBox值的方法。
        public string UpdateTxtMethod(string msg)
        {
            richTextBox1.AppendText(msg + "\r\n");
            return msg;
        }

        //此爲在非建立線程中的調用方法,實際上是使用TextBox的Invoke方法。
        public void ThreadMethodTxt(string n)
        {
            IAsyncResult ar = this.BeginInvoke(updateTxt, n);
            //這裏就是你要的返回數據
            string result = this.EndInvoke(ar).ToString();

            this.BeginInvoke(updateTxt, "返回數據:" + result);
        }
        //開啓線程
        private void button1_Click(object sender, EventArgs e)
        {
            Thread objThread = new Thread(new ThreadStart(delegate
            {
                ThreadMethodTxt(textBox1.Text.Trim());
            }));
            objThread.Start();
        }

        private void Form1_Load_1(object sender, EventArgs e)
        {
            //實例化委託
            updateTxt = new UpdateTxt(UpdateTxtMethod);
        }
    }
}

歡迎你們提建議,若是那裏有問題還請指教一下

相關文章
相關標籤/搜索