You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trpl-zh-cn/src/ch13-00-functional-features.md

17 lines
1.3 KiB

8 years ago
# Rust 中的函数式语言功能 —— 迭代器和闭包
> [ch13-00-functional-features.md](https://github.com/rust-lang/book/blob/master/second-edition/src/ch13-00-functional-features.md)
> <br>
7 years ago
> commit d06a6a181fd61704cbf7feb55bc61d518c6469f9
8 years ago
Rust 的设计灵感来源于很多现存的语言和技术。其中一个显著的影响就是 **函数式编程***functional programming*。函数式编程风格通常包含将函数作为参数值或其他函数的返回值、将函数赋值给变量以供之后执行等等。我们不会在这里讨论函数式编程是或不是什么的问题而是展示Rust的一些在功能上与其他语言类似的特性。
8 years ago
更具体的,我们将要涉及:
* **闭包***Closures*),一个可以储存在变量里的类似函数的结构。
8 years ago
* **迭代器***Iterators*),一种处理元素序列的方式。。
* 如何使用这些功能来改进第十二章的 I/O 项目。
7 years ago
* 这些功能的性能。**剧透高能:** 他们的速度超乎你的想象!
8 years ago
还有其它受函数式风格影响的 Rust 功能,比如模式匹配和枚举,这些已经在其他章节中讲到过了。掌握闭包和迭代器则是编写符合语言风格的高性能 Rust 代码的重要一环,所以我们将专门用一整章来讲解他们。