什么是 F# 引号?
F# 中的“引号”是什么?它们的用途是什么?
What are "quotations" in F#, and what are they used for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
F# 中的“引号”是什么?它们的用途是什么?
What are "quotations" in F#, and what are they used for?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
请参阅
http://msdn.microsoft.com/en-us/library/dd233212 .aspx
以及可能
http://en.wikipedia.org/wiki/Homoiconicity
如果您想要场景,我打赌您可以通过查看
https://stackoverflow.com/questions/tagged 找到一些场景/F%23+引号
See
http://msdn.microsoft.com/en-us/library/dd233212.aspx
and possibly
http://en.wikipedia.org/wiki/Homoiconicity
If you want scenarios, I bet you can find some by looking at
https://stackoverflow.com/questions/tagged/F%23+quotations
它们相当于 C# 中的
Expression
对象。它们以一种可以在运行时被其他代码访问的方式表示其中代码的表达式树。They are equivalent to
Expression<>
objects in C#. They represent the expression tree of the code therein in a way that can be accessed by other code at runtime.http://fortysix-and-two。 blogspot.com/2009/06/traversing-and-transforming-f.html
http://fortysix-and-two.blogspot.com/2009/06/traversing-and-transforming-f.html