考虑这段代码:
foreach(var person in personList){ if (person.name == "Mehran") break;}
personList在多个线程之间共享.
在什么情况下人可能为null,我得到person.name的NullReferenceException?
据我所知,这个人在这里被认为是一个局部变量,如果我们进入foreach块,所以我们已经成功迭代了personList,所以在任何情况下或任何并行场景中人都不应该为null.
即使personList被另一个线程更改,或者被引用的人被处置,person变量也应该具有值.因为没有人可以更改引用此人的位置.
是否有任何情况可以解释这种情况?
解决方法As I kNow,the person is consIDered as a local variable here and if the we get into the foreach block,so we have iterated the personList successfully,so person should not be null in any circumstances or any parallel scenario.
仅仅因为你成功迭代personList并不意味着它不包含任何空值.例如:
List<Person> personList = new List<Person>();personList.Add(null);foreach (var person in personList){ // Here,person will be null}
(另外,如果有什么东西在修改列表,你通常会遇到麻烦 – 面对作者而言它们不是线程安全的 – 但我不认为这需要成为问题的一部分.)
总结以上是内存溢出为你收集整理的c# – 通过另一个线程将局部变量修改为null,这怎么可能全部内容,希望文章能够帮你解决c# – 通过另一个线程将局部变量修改为null,这怎么可能所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)