线程同步——volatile

作者:追风剑情 发布于:2017-9-26 10:48 分类:C#

volatile是控制单个变量线程同步的关键字

示例

  1. using System;
  2. using System.Threading;
  3.  
  4. namespace volatileTest
  5. {
  6. class Program
  7. {
  8. //volatile关键字保证了同一时间只会有1条线程访问此变量
  9. //线程不会进行本地缓存(即,直接在共享内存里操作)
  10. static volatile int i = 0;
  11. //不能保证同一时间只有1条线程访问,可能导致变量的不一致性
  12. //线程会进行本地缓存(即,先在本地缓存上操作,然后再同步到主内存)
  13. static int j = 0;
  14.  
  15. static void Main(string[] args)
  16. {
  17. Thread myThread;
  18. for (int i = 0; i < 5; i++)
  19. {
  20. myThread = new Thread(new ThreadStart(MyThreadProc));
  21. myThread.Name = String.Format("Thread{0}", i + 1);
  22. myThread.IsBackground = true;
  23. myThread.Start();
  24. }
  25.  
  26. Console.ReadKey();
  27. }
  28.  
  29. private static void MyThreadProc()
  30. {
  31. j++;
  32. i++;
  33. Console.WriteLine("{0} Read i={1}, j={2}", Thread.CurrentThread.Name, i, j);
  34. }
  35. }
  36. }


运行测试

111111.png

官方在.NET中的实现代码

  1. [MethodImplAttribute(MethodImplOptions.NoInlining)] // disable optimizations
  2. public static int VolatileRead(ref int address)
  3. {
  4. int ret = address;
  5. MemoryBarrier(); // Call MemoryBarrier to ensure the proper semantic in a portable way.
  6. return ret;
  7. }
  8.  
  9. [MethodImplAttribute(MethodImplOptions.NoInlining)] // disable optimizations
  10. public static void VolatileWrite(ref int address, int value)
  11. {
  12. MemoryBarrier(); // Call MemoryBarrier to ensure the proper semantic in a portable way.
  13. address = value;
  14. }

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号