信号量——Semaphore

作者:追风剑情 发布于:2017-9-20 21:31 分类:C#

可用来限制同时访问某个资源的线程数量。

示例

  1. using System;
  2. using System.Threading;
  3.  
  4. namespace SemaphoreTest
  5. {
  6. class Program
  7. {
  8. static SimpleWaitLock slock;
  9.  
  10. static void Main(string[] args)
  11. {
  12. //允许2条线程同时访问资源
  13. slock = new SimpleWaitLock(2, 10);
  14.  
  15. Thread myThread;
  16. for (int i = 0; i < 10; i++)
  17. {
  18. myThread = new Thread(new ThreadStart(MyThreadProc));
  19. myThread.Name = String.Format("Thread{0}", i + 1);
  20. myThread.Start();
  21. }
  22.  
  23. Console.ReadKey();
  24. }
  25.  
  26. private static void MyThreadProc()
  27. {
  28. slock.Enter();
  29. }
  30. }
  31.  
  32. public sealed class SimpleWaitLock : IDisposable
  33. {
  34. private Semaphore m_available;
  35.  
  36. public SimpleWaitLock(int initialCount, int maximumCount)
  37. {
  38. m_available = new Semaphore(initialCount, maximumCount);
  39. }
  40.  
  41. public void Enter()
  42. {
  43. m_available.WaitOne();//信号量减1
  44. Console.WriteLine("{0} Thread Enter", Thread.CurrentThread.Name);
  45. //模拟做些事情
  46. Thread.Sleep(1000);
  47. Leave();
  48. }
  49.  
  50. public void Leave()
  51. {
  52. m_available.Release();//信号量加1
  53. Console.WriteLine("{0} Thread Level", Thread.CurrentThread.Name);
  54. }
  55. public void Dispose() { }
  56. }
  57. }

运行测试

111111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号