Go 函数多返回值

Go语言内置支持多返回值,这个在Go语言中用的很多,比如一个函数同时返回结果和错误信息。

  1. package main
  2. import "fmt"
  3. // 这个函数的返回值为两个int
  4. func vals() (int, int) {
  5. return 3, 7
  6. }
  7. func main() {
  8. // 获取函数的两个返回值
  9. a, b := vals()
  10. fmt.Println(a)
  11. fmt.Println(b)
  12. // 如果你只对多个返回值里面的几个感兴趣
  13. // 可以使用下划线(_)来忽略其他的返回值
  14. _, c := vals()
  15. fmt.Println(c)
  16. }

输出结果为

  1. 3
  2. 7
  3. 7