gpt4 book ai didi

go - 在 golang 中返回输入变量

转载 作者:IT王子 更新时间:2023-10-29 01:18:53 25 4
gpt4 key购买 nike

刚开始接触Golang,看到典型的swap函数例子:

func swap(x, y string) (string, string) {
return y, x
}

我自然而然地认为命名返回可以解决它,而且这是一个更贴切的例子,所以我尝试了更短的版本:

package main

import "fmt"

func swap(z, y int) (z, y int) {
return
}

func main() {
fmt.Println(swap(2, 3))
}

但令我惊讶的是它没有编译提示重复的参数。为什么不可能返回输入参数?是我做错了什么还是它不受支持?

我认为这是一个完全有效的用例,它可能有很多其他的例子。

最佳答案

我也是一个 Golang 初学者。这是我设法找到的。

问题本质上是,您声明了两个名为 z 的变量,然后期望它们是统一的。这是不支持的,实际上会违背命名返回类型的主要目标,即记录返回值的含义。

更详细的解释,这有点像写下面的代码:

func badFunction(a int) int {
var a int = 0
return a
}

一个变量被声明了两次,这对 Go 来说是令人困惑的。如果我们看看 'tour of go' 是什么不得不说关于命名返回值,我们可以看到问题。它不是最好的来源,但它仍然是一个来源:

Go's return values may be named. If so, they are treated as variables defined at the top of the function.

也就是说,您的示例几乎与badFunction 完全一样。对于编译器来说,它看起来有点像这样:

func swap(a, b int) (int, int) {
var a int = 0
var b int = 0
return b, a
}

自然地,编译器会提示 a redeclared in block,这是一个相关但公认不相等的错误。您在那里收到的错误消息似乎本质上是一种预检查,以防止用户看到脱糖时生成的代码。


作为this Stackoverflow question报告,命名的返回值本质上应该仅用于文档。但是,它确实提到了意外阴影的可能性。可能是早期的 Go 版本支持此功能,但此后已更改以防止由​​于此类名称冲突而导致的错误,但是我还没有找到与此相关的任何信息。

effective go section关于这个话题也有话要说:

The return or result "parameters" of a Go function can be given names and used as regular variables, just like the incoming parameters. When named, they are initialized to the zero values for their types when the function begins; if the function executes a return statement with no arguments, the current values of the result parameters are used as the returned values.

The names are not mandatory but they can make code shorter and clearer: they're documentation.


TL;DR:编译器没有按照您预期的方式统一名称。不支持这种隐式阴影,应积极避免以防止某些容易避免的错误。

关于go - 在 golang 中返回输入变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46635576/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com