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 语句实现


基础教程推荐
- 全局 ASAX - 获取服务器名称 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01