使用“yield”是线程安全的吗?扩展方法内的运算符?

发布于 2024-08-30 02:11:08 字数 250 浏览 8 评论 0原文

在扩展方法中使用yield 运算符是否是线程安全的?

例如:

public static IEnumerable<CartItem> GetItems( this Cart cart )
{
        {
            while( cart.hasNext() )
                yield return cart.GetNextItem( );
        }
}

Would be thread-safe to use the yield operator inside an extension method?

For example:

public static IEnumerable<CartItem> GetItems( this Cart cart )
{
        {
            while( cart.hasNext() )
                yield return cart.GetNextItem( );
        }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

星星的轨迹 2024-09-06 02:11:08

我不太确定你的意思,但yield return本质上会导致函数生成状态机包装类并返回该类的实例。每个收益率返回都是来自状态机的返回。调用您的方法返回的单个实例不是线程安全的(您不能从多个线程同时迭代它),但多个调用将生成单独的实例。这些单独的实例可以由多个线程使用,在这种情况下,线程安全性由枚举器使用的类的线程安全性决定(在您的情况下,是 cart 的方法。)

I'm not exactly sure what you mean, but yield return essentially causes the function to generate a state machine wrapper class and returns an instance of the class. Each yield return is a return from the state machine. The individual instance returned by a call to your method would not be thread-safe (you can't iterate on it simultaneously from multiple threads), but multiple calls would generate separate instances. Those separate instances could be used by multiple threads and the thread-safety in that case is determined by the thread-safety of the classes used by the enumerator (cart's methods, in your case.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文