命名函数的返回参数有什么好处?
func namedReturn(i int) (ret int) {
ret = i
i += 2
return
}
func anonReturn(i int) int {
ret := i
return ret
心有法竹
繁花不似锦
相关分类