我正在学习 C# 中的多线程,我看到下面的代码
static readonly object _locker = new object();
static void Main()
{
lock (_locker)
{
AnotherMethod();
// ...some work is going on
}
}
static void AnotherMethod()
{
lock (_locker) { Console.WriteLine ("Another method"); }
}
我想知道什么时候需要使用嵌套锁定?在这种情况下,为什么不只使用一把锁呢?