gpt4 book ai didi

c# - 为什么要使用 Mutex 来锁定?

转载 作者:太空宇宙 更新时间:2023-11-03 23:34:10 26 4
gpt4 key购买 nike

为什么有人会使用新的互斥锁来进行锁定?

public class Job
{
private static Mutex mutex = new Mutex();

public void Execute(Context context)
{
lock (mutex)
{
// some work here
}

// some more work here
}
}

最佳答案

如果这真的是所述 Mutex 的唯一用途,那么它确实没有意义。一个普通的 object 就足够了。

关于c# - 为什么要使用 Mutex 来锁定?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31130064/

26 4 0
文章推荐: c# - 在 ASP.Net 中的运行时向 HTML