- 1、本文档共18页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Rust宏教程(翻译)
Rust Macros Tutorial
目录
1 Introduction
2 Invocation syntax
3 Transcription syntax
4 Multiplicity
5 Macro argument pattern matching
6 A final note
1. Introduction(介绍)
Functions are the primary tool that programmers can use to build abstractions.(函数是程序员用于建立抽象的主要工具。) Sometimes, however, programmers want to abstract over compile-time syntax rather than run-time values.(然而,有时候程序员希望抽象编译期的语法而不是运行期的值。) Macros provide syntactic abstraction.(宏提供语法抽象。) For an example of how this can be useful, consider the following two code fragments, which both pattern-match on their input and both return early in one case, doing nothing otherwise:(用一个例子来解释,宏有多有用,考虑下面两个代码片段,它们都用模式匹配输入然后在唯一的分支中提早返回,不再做别的事情:)
match input_1 {
special_a(x) = { return x; }
_ = {}
}
// ...
match input_2 {
special_b(x) = { return x; }
_ = {}
}
This code could become tiresome if repeated many times.(这种代码重复多次是很麻烦的。) However, no function can capture its functionality to make it possible to abstract the repetition away.(然而,无法通过函数来抽象这种重复。) Rusts macro system, however, can eliminate the repetition.(然而,Rust的宏系统可以削除这种重复。) Macros are lightweight custom syntax extensions, themselves defined using the macro_rules! syntax extension.(宏是轻量级的用户算定义语法扩展,使用macro_rules! 语法扩展来定义。) The following early_return macro captures the pattern in the above code:(下面的early_return宏抓住了上面代码的模式:)
macro_rules! early_return(
($inp:expr $sp:ident) = ( // invoke it like `(input_5 special_e)`
match $inp {
$sp(x) = { return x; }
_ = {}
}
);
)
// ...
early_return!(input_1 special_a);
// ...
early_return!(input_2 special_b);
Macros are defined in pattern-matching style: in the above example, the text ($inp:expr $sp:ident) that appears on the left-hand side of the = is the macro invocation syntax, a pattern denoting how to write a call to the macro.(宏使用模式匹配定义:上例中,出现在 = 左侧的 ($inp:expr $sp:ident) 是宏调用语法,模式表示怎样调用宏。) The text on the right-hand side of the =, beginning with match $inp, is the macro tr
您可能关注的文档
- plc设计论文plc机械手论文.doc
- PMC物料控制程序.doc
- PMC生产计划与物料控制孙明华老师.doc
- PMC生产计划与物料控制安排.doc
- PMC生产计划与物料控制课程熊鼎伟老师生产管理.doc
- PMC生产计划与物料控制().doc
- PMC生产计划及物料控制森涛培训.doc
- PMC课长职位说明书.doc
- PM运动控制器立式车床的应用.doc
- POF热收缩膜的高聚物分子链拉伸定向原理设计PP论坛包装印刷.doc
- 10《那一年,面包飘香》教案.docx
- 13 花钟 教学设计-2023-2024学年三年级下册语文统编版.docx
- 2024-2025学年中职学校心理健康教育与霸凌预防的设计.docx
- 2024-2025学年中职生反思与行动的反霸凌教学设计.docx
- 2023-2024学年人教版小学数学一年级上册5.docx
- 4.1.1 线段、射线、直线 教学设计 2024-2025学年北师大版七年级数学上册.docx
- 川教版(2024)三年级上册 2.2在线导航选路线 教案.docx
- Unit 8 Dolls (教学设计)-2024-2025学年译林版(三起)英语四年级上册.docx
- 高一上学期体育与健康人教版 “贪吃蛇”耐久跑 教案.docx
- 第1课时 亿以内数的认识(教学设计)-2024-2025学年四年级上册数学人教版.docx
文档评论(0)