中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C# ManualResetEvent用法詳解

發布時間:2020-10-02 08:37:04 來源:腳本之家 閱讀:217 作者:陌客& 欄目:編程語言

ManualResetEvent表示線程同步事件,可以對所有進行等待的線程進行統一管理(收到信號時必須手動重置該事件)

其構造函數為:

public ManualResetEvent (bool initialState);

參數 initialState 表示是否初始化,如果為 true,則將初始狀態設置為終止(不阻塞);如果為 false,則將初始狀態設置為非終止(阻塞)。

注意:如果其參數設置為true,則ManualResetEvent等待的線程不會阻塞。 如果初始狀態為false, 則在Set調用方法之前, 將阻止線程。

它只有兩個方法

//將事件狀態設置為終止狀態,從而允許繼續執行一個或多個等待線程。
public bool Set ();

//將事件狀態設置為非終止,從而導致線程受阻。
public bool Reset ();

//返回值:操作成功返回true,否則false

講了這么多,看個例子理解一下

using System;
using System.Threading;

public class Example
{
  // mre is used to block and release threads manually. It is
  // created in the unsignaled state.
  private static ManualResetEvent mre = new ManualResetEvent(false);

  static void Main()
  {
    Console.WriteLine("\nStart 3 named threads that block on a ManualResetEvent:\n");

    for (int i = 0; i <= 2; i++)
    {
      Thread t = new Thread(ThreadProc);
      t.Name = "Thread_" + i;
      t.Start(); //開始線程
    }

    Thread.Sleep(500);
    Console.WriteLine("\nWhen all three threads have started, press Enter to call Set()" +
             "\nto release all the threads.\n");
    Console.ReadLine();

    mre.Set();

    Thread.Sleep(500);
    Console.WriteLine("\nWhen a ManualResetEvent is signaled, threads that call WaitOne()" +
             "\ndo not block. Press Enter to show this.\n");
    Console.ReadLine();

    for (int i = 3; i <= 4; i++)
    {
      Thread t = new Thread(ThreadProc);
      t.Name = "Thread_" + i;
      t.Start();
    }

    Thread.Sleep(500);
    Console.WriteLine("\nPress Enter to call Reset(), so that threads once again block" +
             "\nwhen they call WaitOne().\n");
    Console.ReadLine();

    mre.Reset();

    // Start a thread that waits on the ManualResetEvent.
    Thread t5 = new Thread(ThreadProc);
    t5.Name = "Thread_5";
    t5.Start();

    Thread.Sleep(500);
    Console.WriteLine("\nPress Enter to call Set() and conclude the demo.");
    Console.ReadLine();

    mre.Set();

    // If you run this example in Visual Studio, uncomment the following line:
    //Console.ReadLine();
  }


  private static void ThreadProc()
  {
    string name = Thread.CurrentThread.Name;

    Console.WriteLine(name + " starts and calls mre.WaitOne()");

    mre.WaitOne(); //阻塞線程,直到調用Set方法才能繼續執行

    Console.WriteLine(name + " ends.");
  }
}

結果如下

C# ManualResetEvent用法詳解

過程:

該示例以信號狀態ManualResetEvent( false即傳遞給構造函數的) 開頭。 三個線程, 每個線程在調用其WaitOne方法時被阻止。 當用戶按Enter鍵時, 該示例調用Set方法, 該方法釋放所有三個線程,使其繼續執行。

再次按 " enter " 鍵, 此時ManualResetEvent在調用Reset方法之前, 一直保持終止狀態,因此這些線程在調用WaitOne方法時不會被阻止, 而是運行到完成。即對應上述(收到信號時必須手動重置該事件)

再次按enter鍵將導致該示例調用Reset方法, 并啟動一個線程, 該線程在調用WaitOne時將被阻止。 按enter鍵, 最后一次調用Set以釋放最后一個線程, 程序結束。

如果還不是很清楚可以進行單步調試,這樣就能明白了!

文章參考MSDN:ManualResetEvent Class

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

萝北县| 和平县| 泗洪县| 洮南市| 文安县| 南宁市| 兴文县| 佛山市| 拜泉县| 镇宁| 宜城市| 衡水市| 万山特区| 遵化市| 东方市| 安平县| 贡觉县| 大同市| 兰州市| 长宁区| 贵州省| 桃园市| 固阳县| 福建省| 黎川县| 黄冈市| 衢州市| 珲春市| 延津县| 双峰县| 清新县| 兴山县| 香河县| 荥经县| 嘉鱼县| 鄂托克前旗| 苏尼特左旗| 时尚| 景洪市| 峡江县| 邢台市|