亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c# autoresetevent如何設置

c#
小樊
81
2024-11-18 11:02:03
欄目: 編程語言

在C#中,AutoResetEvent是一個同步原語,用于在多個線程之間進行通信

using System;
using System.Threading;

class Program
{
    static AutoResetEvent autoResetEvent = new AutoResetEvent(false); // 初始狀態為false

    static void Main()
    {
        Thread thread1 = new Thread(Thread1Method);
        Thread thread2 = new Thread(Thread2Method);

        thread1.Start();
        thread2.Start();

        thread1.Join();
        thread2.Join();
    }

    static void Thread1Method()
    {
        Console.WriteLine("Thread 1 is waiting for the AutoResetEvent.");
        autoResetEvent.WaitOne(); // 等待事件被設置為true
        Console.WriteLine("Thread 1 has been signaled.");
    }

    static void Thread2Method()
    {
        Thread.Sleep(1000); // 讓線程2睡眠1秒,以便在線程1之前執行
        Console.WriteLine("Thread 2 is signaling the AutoResetEvent.");
        autoResetEvent.Set(); // 將事件設置為true
    }
}

在這個示例中,我們創建了一個名為autoResetEventAutoResetEvent實例,并將其初始狀態設置為false。然后,我們創建了兩個線程thread1thread2,分別執行Thread1MethodThread2Method方法。

Thread1Method中,我們使用autoResetEvent.WaitOne()等待事件被設置為true。在Thread2Method中,我們首先讓線程睡眠1秒,然后使用autoResetEvent.Set()將事件設置為true。當事件被設置為true時,Thread1Method將繼續執行。

0
岳西县| 鄯善县| 河源市| 佳木斯市| 隆子县| 达日县| 雅江县| 博爱县| 扬州市| 遂宁市| 滁州市| 呈贡县| 集贤县| 庆元县| 东安县| SHOW| 芮城县| 苏州市| 宜春市| 宁德市| 泾阳县| 绥德县| 陆良县| 治多县| 两当县| 江油市| 新宁县| 龙江县| 剑川县| 舞阳县| 特克斯县| 潼南县| 北票市| 疏附县| 东安县| 突泉县| 梁平县| 正定县| 桦南县| 远安县| 长宁县|