c#

c# manualresetevent 在多线程中应用

小樊
81
2024-11-19 08:39:37
栏目: 编程语言

ManualResetEvent 是 C# 中一种用于同步线程的类,它允许一个或多个线程等待,直到另一个线程设置事件。在多线程编程中,ManualResetEvent 可以帮助你控制线程之间的执行顺序和协作。

以下是一个简单的示例,展示了如何在多线程中使用 ManualResetEvent

using System;
using System.Threading;

class Program
{
    static ManualResetEvent _event = new ManualResetEvent(false); // 初始状态为未触发

    static void Main(string[] args)
    {
        Thread thread1 = new Thread(Thread1);
        Thread thread2 = new Thread(Thread2);

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

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

    static void Thread1()
    {
        Console.WriteLine("Thread 1 is waiting for the event to be set.");
        _event.WaitOne(); // 等待事件被设置
        Console.WriteLine("Thread 1: Event has been set.");
    }

    static void Thread2()
    {
        Thread.Sleep(1000); // 让线程2等待1秒
        Console.WriteLine("Thread 2: Setting the event.");
        _event.Set(); // 设置事件
    }
}

在这个示例中,我们创建了两个线程 thread1thread2Thread1 在开始时等待事件被设置,而 Thread2 在等待1秒后设置事件。当事件被设置时,Thread1 继续执行。

ManualResetEvent 还有其他方法,如 WaitAllWaitAny,可用于等待多个事件或等待一组事件中任意一个被设置。你还可以使用 Reset 方法将事件重置为未触发状态,以便再次使用。

0
看了该问题的人还看了