91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c# manualresetevent 如何與其他同步機制結合

c#
小樊
81
2024-11-19 08:50:43
欄目: 編程語言

ManualResetEvent 是 C# 中一種用于同步線程的類,它允許一個或多個線程等待某個條件成立。它可以與其他同步機制結合使用,例如 MutexAutoResetEventSemaphoreSlim 等。下面是一些示例,展示了如何將 ManualResetEvent 與其他同步機制結合使用。

  1. 結合 Mutex 使用:
using System;
using System.Threading;

class Program
{
    static Mutex mutex = new Mutex();
    static ManualResetEvent resetEvent = new ManualResetEvent(false);

    static void Main()
    {
        Thread t1 = new Thread(ThreadMethod1);
        Thread t2 = new Thread(ThreadMethod2);

        t1.Start();
        t2.Start();

        t1.Join();
        t2.Join();
    }

    static void ThreadMethod1()
    {
        mutex.WaitOne(); // 獲取互斥鎖
        Console.WriteLine("Thread 1 acquired the lock.");
        resetEvent.Set(); // 設置手動重置事件
        mutex.ReleaseMutex(); // 釋放互斥鎖
    }

    static void ThreadMethod2()
    {
        resetEvent.WaitOne(); // 等待手動重置事件
        Console.WriteLine("Thread 2 acquired the event.");
        mutex.WaitOne(); // 獲取互斥鎖
        Console.WriteLine("Thread 2 acquired the lock.");
        mutex.ReleaseMutex(); // 釋放互斥鎖
    }
}
  1. 結合 AutoResetEvent 使用:
using System;
using System.Threading;

class Program
{
    static AutoResetEvent autoResetEvent = new AutoResetEvent(false);
    static object lockObject = new object();

    static void Main()
    {
        Thread t1 = new Thread(ThreadMethod1);
        Thread t2 = new Thread(ThreadMethod2);

        t1.Start();
        t2.Start();

        t1.Join();
        t2.Join();
    }

    static void ThreadMethod1()
    {
        autoResetEvent.WaitOne(); // 等待自動重置事件
        lock (lockObject)
        {
            Console.WriteLine("Thread 1 acquired the lock.");
        }
        autoResetEvent.Set(); // 設置自動重置事件
    }

    static void ThreadMethod2()
    {
        autoResetEvent.WaitOne(); // 等待自動重置事件
        lock (lockObject)
        {
            Console.WriteLine("Thread 2 acquired the lock.");
        }
        autoResetEvent.Set(); // 設置自動重置事件
    }
}
  1. 結合 SemaphoreSlim 使用:
using System;
using System.Threading;

class Program
{
    static SemaphoreSlim semaphore = new SemaphoreSlim(1, 1);
    static object lockObject = new object();

    static void Main()
    {
        Thread t1 = new Thread(ThreadMethod1);
        Thread t2 = new Thread(ThreadMethod2);

        t1.Start();
        t2.Start();

        t1.Join();
        t2.Join();
    }

    static void ThreadMethod1()
    {
        semaphore.Wait(); // 等待信號量
        lock (lockObject)
        {
            Console.WriteLine("Thread 1 acquired the lock.");
        }
        semaphore.Release(); // 釋放信號量
    }

    static void ThreadMethod2()
    {
        semaphore.Wait(); // 等待信號量
        lock (lockObject)
        {
            Console.WriteLine("Thread 2 acquired the lock.");
        }
        semaphore.Release(); // 釋放信號量
    }
}

這些示例展示了如何將 ManualResetEvent 與其他同步機制結合使用,以確保線程安全地訪問共享資源。在實際應用中,你可以根據需要選擇合適的同步機制。

0
新余市| 西吉县| 和静县| 和顺县| 高碑店市| 永仁县| 延吉市| 墨脱县| 广安市| 息烽县| 九龙县| 弥渡县| 泗洪县| 行唐县| 安康市| 商水县| 阿拉善盟| 伽师县| 信阳市| 尼勒克县| 化州市| 临城县| 巴中市| 漾濞| 修武县| 集安市| 周宁县| 璧山县| 日土县| 额济纳旗| 龙海市| 博白县| 遂宁市| 米林县| 宜城市| 黎川县| 濮阳市| 绥棱县| 泰顺县| 灵寿县| 湟中县|