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/ch03-03-how-functions-work.md

264 lines
10 KiB

## 函数
8 years ago
> [ch03-03-how-functions-work.md](https://github.com/rust-lang/book/blob/master/second-edition/src/ch03-03-how-functions-work.md)
8 years ago
> <br>
> commit f949ff883628db8ed2f2f5f19e146ebf19ed6a6f
8 years ago
函数遍布于 Rust 代码中。你已经见过语言中最重要的函数之一:`main` 函数,它是很多程序的入口点。你也见过 `fn` 关键字,它用来声明新函数。
8 years ago
Rust 代码中的函数和变量名使用 *snake case* 规范风格。在 snake case 中,所有字母都是小写并使用下划线分隔单词。这是一个包含函数定义示例的程序:
8 years ago
7 years ago
<span class="filename">文件名: src/main.rs</span>
8 years ago
```rust
fn main() {
println!("Hello, world!");
another_function();
}
fn another_function() {
println!("Another function.");
}
```
Rust 中的函数定义以 `fn` 开始并在函数名后跟一对圆括号。大括号告诉编译器哪里是函数体的开始和结尾。
8 years ago
可以使用函数名后跟圆括号来调用我们定义过的任意函数。因为程序中已定义 `another_function` 函数,所以可以在 `main` 函数中调用它。注意,源码中 `another_function` 定义在 `main` 函数 **之后**也可以定义在之前。Rust 不关心函数定义于何处,只要定义了就行。
8 years ago
让我们新建一个叫做 *functions* 的二进制项目来进一步探索函数。将上面的 `another_function` 例子写入 *src/main.rs* 中并运行。你应该会看到如下输出:
8 years ago
7 years ago
```text
8 years ago
$ cargo run
Compiling functions v0.1.0 (file:///projects/functions)
7 years ago
Finished dev [unoptimized + debuginfo] target(s) in 0.28 secs
8 years ago
Running `target/debug/functions`
Hello, world!
Another function.
```
`main` 函数中的代码会按顺序执行。首先,打印 “Hello, world!” 信息,然后调用 `another_function` 函数并打印它的信息。
8 years ago
### 函数参数
函数也可以被定义为拥有 **参数***parameters*),参数是特殊变量,是函数签名的一部分。当函数拥有参数(形参)时,可以为这些参数提供具体的值(实参)。技术上讲,这些具体值被称为参数(*arguments*),但是在闲谈时,人们倾向于互换着使用 *parameter**argument* 来表示函数定义中的变量或调用函数时传入的具体值。
8 years ago
下面被重写的 `another_function` 版本展示了 Rust 中参数是什么样的:
8 years ago
7 years ago
<span class="filename">文件名: src/main.rs</span>
8 years ago
```rust
fn main() {
another_function(5);
}
fn another_function(x: i32) {
println!("The value of x is: {}", x);
}
```
尝试运行程序,将会输出如下内容:
8 years ago
7 years ago
```text
8 years ago
$ cargo run
Compiling functions v0.1.0 (file:///projects/functions)
7 years ago
Finished dev [unoptimized + debuginfo] target(s) in 1.21 secs
8 years ago
Running `target/debug/functions`
The value of x is: 5
```
`another_function` 的声明中有一个命名为 `x` 的参数。`x` 的类型被指定为 `i32`。当将 `5` 传给 `another_function` 时,`println!` 宏将 `5` 放入格式化字符串中大括号的位置。
8 years ago
在函数签名中,**必须** 声明每个参数的类型。这是 Rust 设计中一个经过慎重考虑的决定:要求在函数定义中提供类型注解,意味着编译器不需要你在代码的其他地方注明类型来指出你的意图。
8 years ago
当一个函数有多个参数时,使用逗号分隔,像这样:
8 years ago
7 years ago
<span class="filename">文件名: src/main.rs</span>
8 years ago
```rust
fn main() {
another_function(5, 6);
}
fn another_function(x: i32, y: i32) {
println!("The value of x is: {}", x);
println!("The value of y is: {}", y);
}
```
这个例子创建了有两个参数的函数,都是 `i32` 类型。函数打印出了这两个参数的值。注意函数的参数类型并不一定相同,这个例子中只是碰巧相同罢了。
8 years ago
7 years ago
尝试运行代码。使用上面的例子替换当前 *functions* 项目的 *src/main.rs* 文件,并用 `cargo run` 运行它:
8 years ago
7 years ago
```text
8 years ago
$ cargo run
Compiling functions v0.1.0 (file:///projects/functions)
7 years ago
Finished dev [unoptimized + debuginfo] target(s) in 0.31 secs
8 years ago
Running `target/debug/functions`
The value of x is: 5
The value of y is: 6
```
因为我们使用 `5` 作为 `x` 的值,`6` 作为 `y` 的值来调用函数,因此打印出这两个字符串及相应的值。
8 years ago
### 包含语句和表达式的函数体
8 years ago
函数体由一系列的语句和一个可选的结尾表达式构成。目前为止,我们只介绍了没有结尾表达式的函数,不过你已经见过作为语句一部分的表达式。因为 Rust 是一门基于表达式expression-based的语言这是一个需要理解的不同于其他语言重要区别。其他语言并没有这样的区别所以让我们看看语句与表达式有什么区别以及这些区别是如何影响函数体的。
8 years ago
实际上,我们已经使用过语句和表达式。**语句***Statements*)是执行一些操作但不返回值的指令。表达式(*Expressions*)计算并产生一个值。让我们看一些例子:
8 years ago
使用 `let` 关键字创建变量并绑定一个值是一个语句。在列表 3-1 中,`let y = 6;` 是一个语句。
8 years ago
7 years ago
<span class="filename">文件名: src/main.rs</span>
8 years ago
```rust
fn main() {
let y = 6;
}
```
7 years ago
<span class="caption">列表 3-1包含一个语句的 `main` 函数定义</span>
8 years ago
函数定义也是语句,上面整个例子本身就是一个语句。
8 years ago
语句不返回值。因此,不能把 `let` 语句赋值给另一个变量,比如下面的例子尝试做的,会产生一个错误:
8 years ago
7 years ago
<span class="filename">文件名: src/main.rs</span>
8 years ago
```rust,ignore
fn main() {
let x = (let y = 6);
}
```
当运行这个程序时,会得到如下错误:
8 years ago
7 years ago
```text
8 years ago
$ cargo run
Compiling functions v0.1.0 (file:///projects/functions)
error: expected expression, found statement (`let`)
--> src/main.rs:2:14
|
2 | let x = (let y = 6);
| ^^^
|
= note: variable declaration using `let` is a statement
```
`let y = 6` 语句并不返回值,所以没有可以绑定到 `x` 上的值。这与其他语言不同,例如 C 和 Ruby它们的赋值语句会返回所赋的值。在这些语言中可以这么写 `x = y = 6`,这样 `x``y` 的值都是 `6`Rust 中不能这样写。
8 years ago
表达式会计算出一些值,并且你将编写的大部分 Rust 代码是由表达式组成的。考虑一个简单的数学运算,比如 `5 + 6`,这是一个表达式并计算出值 `11`。表达式可以是语句的一部分:在示例 3-1 中,语句 `let y = 6;` 中的 `6` 是一个表达式,它计算出的值是 `6`。函数调用是一个表达式。宏调用是一个表达式。我们用来创建新作用域的大括号(代码块),`{}`,也是一个表达式,例如:
8 years ago
7 years ago
<span class="filename">文件名: src/main.rs</span>
8 years ago
```rust
fn main() {
let x = 5;
let y = {
let x = 3;
x + 1
};
println!("The value of y is: {}", y);
}
```
这个表达式:
```rust,ignore
{
let x = 3;
x + 1
}
```
是一个代码块,它的值是 `4`。这个值作为 `let` 语句的一部分被绑定到 `y` 上。注意结尾没有分号的那一行 `x+1`,与你见过的大部分代码行不同。表达式的结尾没有分号。如果在表达式的结尾加上分号,它就变成了语句,而语句不会返回值。在接下来探索具有返回值的函数和表达式时要谨记这一点。
8 years ago
### 具有返回值的函数
8 years ago
函数可以向调用它的代码返回值。我们并不对返回值命名,但要在箭头(`->`)后声明它的类型。在 Rust 中,函数的返回值等同于函数体最后一个表达式的值。使用 `return` 关键字和指定值,可从函数中提前返回;但大部分函数隐式的返回最后的表达式。这是一个有返回值的函数的例子:
8 years ago
7 years ago
<span class="filename">文件名: src/main.rs</span>
8 years ago
```rust
fn five() -> i32 {
5
}
fn main() {
let x = five();
println!("The value of x is: {}", x);
}
```
`five` 函数中没有函数调用、宏、甚至没有 `let` 语句——只有数字 `5`。这在 Rust 中是一个完全有效的函数。注意,也指定了函数返回值的类型,就是 `-> i32`。尝试运行代码;输出应该看起来像这样:
8 years ago
7 years ago
```text
8 years ago
$ cargo run
Compiling functions v0.1.0 (file:///projects/functions)
7 years ago
Finished dev [unoptimized + debuginfo] target(s) in 0.30 secs
8 years ago
Running `target/debug/functions`
The value of x is: 5
```
`five` 函数的返回值是 `5`,所以返回值类型是 `i32`。让我们仔细检查一下这段代码。有两个重要的部分:首先,`let x = five();` 这一行表明我们使用函数的返回值初始化一个变量。因为 `five` 函数返回 `5`,这一行与如下代码相同:
8 years ago
```rust
let x = 5;
```
其次,`five` 函数没有参数并定义了返回值类型,不过函数体只有单单一个 `5` 也没有分号,因为这是一个表达式,我们想要返回它的值。
让我们看看另一个例子:
8 years ago
7 years ago
<span class="filename">文件名: src/main.rs</span>
8 years ago
```rust
fn main() {
let x = plus_one(5);
println!("The value of x is: {}", x);
}
fn plus_one(x: i32) -> i32 {
x + 1
}
```
运行代码会打印出 `The value of x is: 6`。但如果在包含 `x + 1` 的行尾加上一个分号,把它从表达式变成语句,我们将看到一个错误。
8 years ago
7 years ago
<span class="filename">文件名: src/main.rs</span>
8 years ago
```rust,ignore
fn main() {
let x = plus_one(5);
println!("The value of x is: {}", x);
}
fn plus_one(x: i32) -> i32 {
x + 1;
}
```
运行代码会产生一个错误,如下:
7 years ago
```text
error[E0308]: mismatched types
--> src/main.rs:7:28
8 years ago
|
7 | fn plus_one(x: i32) -> i32 {
7 years ago
| ____________________________^
8 | | x + 1;
7 years ago
| | - help: consider removing this semicolon
9 | | }
7 years ago
| |_^ expected i32, found ()
8 years ago
|
= note: expected type `i32`
found type `()`
8 years ago
```
主要的错误信息“mismatched types”类型不匹配揭示了代码的核心问题。函数 `plus_one` 的定义说明它要返回一个 `i32` 类型的值,不过语句并不会返回值,使用空元组 `()` 表示不返回值。因为不返回值与函数定义相矛盾从而出现一个错误。在输出中Rust 提供了一条信息,可能有助于纠正这个错误:它建议删除分号,这会修复这个错误。