yield statement implementation(yield 语句实现)
问题描述
我想以易于理解的形式了解有关 yield 语句的所有信息.
I want to know everything about the yield statement, in an easy to understand form.
我已经阅读了 yield 语句及其在实现迭代器模式时的易用性.但是,大部分都非常干燥.我想深入了解一下微软是如何处理收益率的.
I have read about the yield statement and its ease when implementing the iterator pattern. However, most of it is very dry. I would like to get under the covers and see how Microsoft handles return yield.
另外,你什么时候使用yield break?
Also, when do you use yield break?
推荐答案
yield 通过在内部构建状态机来工作.它会在例程退出时存储该例程的当前状态,并在下次从该状态恢复时存储.
yield works by building a state machine internally. It stores the current state of the routine when it exits and resumes from that state next time.
您可以使用 Reflector 查看编译器是如何实现的.
You can use Reflector to see how it's implemented by the compiler.
yield break 当你想停止返回结果时使用.如果您没有 yield break,编译器会在函数末尾假定一个(就像普通函数中的 return; 语句一样)
yield break is used when you want to stop returning results. If you don't have a yield break, the compiler would assume one at the end of the function (just like a return; statement in a normal function)
这篇关于yield 语句实现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:yield 语句实现
基础教程推荐
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 将数据集转换为列表 2022-01-01
- 如果条件可以为空 2022-01-01
