mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-06 14:56:54 +02:00
Update go-cn.html.markdown
This commit is contained in:
@@ -142,6 +142,7 @@ func learnTypes() {
|
|||||||
func learnNamedReturns(x, y int) (z int) {
|
func learnNamedReturns(x, y int) (z int) {
|
||||||
z = x * y
|
z = x * y
|
||||||
return // z is implicit here, because we named it earlier.
|
return // z is implicit here, because we named it earlier.
|
||||||
|
}
|
||||||
|
|
||||||
// Go全面支持垃圾回收。Go有指针,但是不支持指针运算。
|
// Go全面支持垃圾回收。Go有指针,但是不支持指针运算。
|
||||||
// 你会因为空指针而犯错,但是不会因为增加指针而犯错。
|
// 你会因为空指针而犯错,但是不会因为增加指针而犯错。
|
||||||
|
Reference in New Issue
Block a user