(精华)2021年02月19日 .NET Core 多线程底层详解(原子操作)
【摘要】
一:原则操作的概念
所谓原子操作是指不会被线程调度机制打断的操作;这种操作一旦开始,就一直运行到结束,中间不会有任何 context switch (切换到另一个线程)。
原子操作案例
/...
一:原则操作的概念
所谓原子操作是指不会被线程调度机制打断的操作;这种操作一旦开始,就一直运行到结束,中间不会有任何 context switch
(切换到另一个线程)。
原子操作案例
//Interlocked为原子操作相关类,a值为最终值,b可能因为同时操作返回不同的值
public static class AtomicSaple
{
public static int a = 0;
public static void Sample()
{
var b = 0;
b = Interlocked.Increment(ref a);
Console.WriteLine(b);
b = Interlocked.Decrement(ref a);
Console.WriteLine(b);
b = Interlocked.Add(ref a, 2);
Console.WriteLine(b);
//a的值改变为1
Interlocked.Exchange(ref a, 1);
//如果a=0返回1
Interlocked.CompareExchange(ref a,1,0);
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
原子操作实现无锁算法
public class Counter
{
public int TimesA { get; set; }
public int TimesB { get; set; }
public Counter(int timesA, int timesB)
{
TimesA = timesA;
TimesB = timesB;
}
}
public static class CounterSample
{
public static Counter Counter1 = new Counter(0, 0);
/// <summary>
/// 递增计数器,返回递增后的值
/// </summary>
/// <param name="counter"></param>
/// <returns></returns>
public static Counter Increment(ref Counter counter)
{
Counter oldCounter, newCounter;
do
{
oldCounter = counter;
newCounter = new Counter(oldCounter.TimesA + 1, oldCounter.TimesB + 1);
// 使用循环确保成功
} while (Interlocked.CompareExchange(ref counter, newCounter,oldCounter) != oldCounter);
return newCounter;
}
public static void IncrementCounter()
{
var result = Increment(ref Counter1);
Console.WriteLine($"TimesA={result.TimesA},TimesB={result.TimesB}");
}
public static void ThreadIncrement()
{
var thread1 = new Thread(IncrementCounter);
var thread2 = new Thread(IncrementCounter);
thread1.Start();
thread2.Start();
}
public static void PrintCounter()
{
var c = Counter1;
Console.WriteLine($"Counter={c.TimesA},{c.TimesB}");
}
public static void Run()
{
ThreadIncrement();
Thread.Sleep(1000);
PrintCounter();
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
文章来源: codeboy.blog.csdn.net,作者:愚公搬代码,版权归原作者所有,如需转载,请联系作者。
原文链接:codeboy.blog.csdn.net/article/details/108394724
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)