C#編程應用–線程與委託

來源:互聯網
上載者:User

1. C#開發C/S程式,有時需要幾個端,如伺服器端,管理端,用戶端等等, 端與端之間是不同線程或者進程,這就涉及跨線程調用的問題,

    使用委託或者非同步線程是必不可少的,這裡是一個簡單的委託線程,即通過委託調用另外一個線程;

 

2. 有圖有真相:

   

 

3. 源碼:

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

namespace ThreadControlExample
{
    public partial class Form1 : Form
    {
        Thread thread1;
        Thread thread2;
        delegate void AppendStringDelegate(string str);
        AppendStringDelegate appendStringDelegate;
        public Form1()
        {
            InitializeComponent();
            appendStringDelegate = new AppendStringDelegate(AppendString);
        }

        private void AppendString(string str)
        {
           richTextBox1.Text += str;
        }

        private void Method1()
        {
            while (true)
            {
                Thread.Sleep(100);   //線程1休眠100毫秒
                richTextBox1.Invoke(appendStringDelegate, "a");
            }
        }
        private void Method2()
        {
            while (true)
            {
                Thread.Sleep(100);   //線程2休眠100毫秒
                richTextBox1.Invoke(appendStringDelegate, "b");
            }
        }

        private void buttonStart_Click(object sender, EventArgs e)
        {
            richTextBox1.Text = "";
            thread1 = new Thread(new ThreadStart(Method1));
            thread2 = new Thread(new ThreadStart(Method2));
            thread1.Start();
            thread2.Start();
        }

        private void buttonStop_Click(object sender, EventArgs e)
        {
            thread1.Abort();
            thread1.Join();
            thread2.Abort();
            thread2.Join();
            MessageBox.Show("線程1、2終止成功");
        }

    }
}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.