gpt4 book ai didi

c# - Lazy 属性线程安全

转载 作者:太空宇宙 更新时间:2023-11-03 19:08:50 25 4
gpt4 key购买 nike

我正在阅读 Lazy,我在 Msdn docs 上看到了这个注意事项

Making the Lazy object thread safe does not protect the lazily initialized object. If multiple threads can access the lazily initialized object, you must make its properties and methods safe for multithreaded access.

这是否意味着我们必须对所有属性应用线程安全措施?如果是,那么懒惰的目的是什么?

谢谢

最佳答案

这只是说将一个非线程安全对象放入 Lazy<T> 中不会神奇地使其成为线程安全的。

什么 Lazy<T>为您做的是提供一种线程安全的方法来初始化惰性实例,这样每个线程都能看到相同的值。

关于c# - Lazy<T> 属性线程安全,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22925624/

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