C#中的多線程使用 — Thread 類

來源:互聯網
上載者:User

現在C#已經建議擯棄使用 Suspend, Resume 暫停/恢複線程, 也盡量少用 Abort方法中斷一個線程.

建議使用線程的同步手段有:  、、,

 public Thread(ThreadStart start);

另一種是帶參數(ParameterizedThreadStart 委託) --

public Thread(ParameterizedThreadStart start);

ParameterizedThreadStart 委託簽名:

public delegate void ParameterizedThreadStart(Object obj);

樣本:

1. 不帶參數:

       // 定義線程方法:

        private static void ThreadMain()
        {
            Console.WriteLine("This is other thread main method.");
        }

    // 調用:

            Thread mythread = new Thread(ThreadMain);
            mythread.Start();

2. 帶參數:

        // 定義線程方法:

        private static void MainThreadWithParameters(object o)
        {
            Data d = (Data)o;  //類型轉換
            Console.WriteLine("Running in a thread, received {0}", d.Message);
        }

    public struct Data
    {
        public string Message;
    }

    // 調用:

            var data = new Data { Message = "Info" };
            Thread t2 = new Thread(MainThreadWithParameters);
            t2.Start(data);  // 傳入參數

3. 通過定義類傳遞參數:

// 定義存放資料和線程方法的類:

    public class MyThread
    {
        private string message;
        public MyThread(string data)
        {
            this.message = data;
        }
        public void ThreadMethod()
        {
            Console.WriteLine("Running in a thread, data: {0}", this.message);  
        }
    }

// 調用

            var obj = new MyThread("info");
            Thread myThread = new Thread(obj.ThreadMethod); //ThreadStart 委託
            mythread.Start(); 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.