Skip to content

Commit

Permalink
Update 06.2.md (#798)
Browse files Browse the repository at this point in the history
  • Loading branch information
xuing authored Oct 23, 2021
1 parent acb40ab commit 5060462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eBook/06.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Go 默认使用按值传递来传递参数,也就是传递参数的副本。

在函数调用时,像切片(slice)、字典(map)、接口(interface)、通道(channel)这样的引用类型都是默认使用引用传递(即使没有显式的指出指针)。

有些函数只是完成一个任务,并没有返回值。我们仅仅是利用了这种函数的副作用,就像输出文本到终端,发送一个邮件或者是记录一个错误等。
有些函数只是完成一个任务,并没有返回值。我们仅仅是利用了这种函数的副作用(side-effect),就像输出文本到终端,发送一个邮件或者是记录一个错误等。

但是绝大部分的函数还是带有返回值的。

Expand Down

0 comments on commit 5060462

Please sign in to comment.