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 语句实现
基础教程推荐
- Moq It.Is<>不匹配 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
