gpt4 book ai didi

c# - 在锁中使用非静态局部变量有什么意义?

转载 作者:太空狗 更新时间:2023-10-29 20:50:47 24 4
gpt4 key购买 nike

有几次我遇到过这段代码,其中一个类中的局部变量(它不是静态变量)已被锁在锁中。

 public class SomeClass
{
private object obj = new object();
....
....
lock(obj)
{

}
}

鉴于它是一个实例变量,是否有任何锁定点?

最佳答案

Is there any point of locking given that its an instance variables?

多个线程可以作用于同一个实例,线程安全需要一个锁。例如,考虑共享队列。

关于c# - 在锁中使用非静态局部变量有什么意义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5106825/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com