这两个 Golang 函数有什么不同,它们彼此相同吗?
func foo1() (ret string) {
ret = "hi there"
return
}
func foo2() string {
ret := "hi there"
return ret
哪个更好?
慕沐林林
相关分类