Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Go 函数返回值


返回值

如果您希望函数返回一个值,您需要定义返回值的数据类型(例如 intstring 等),并且在函数内部使用 return 关键字

语法

func FunctionName(param1 type, param2 type) type {
  // 要执行的代码
  return output
}

函数返回值示例

示例

这里,myFunction() 接收两个整数(xy),并返回它们的加法结果(x + y)作为整数(int

package main
import ("fmt")

func myFunction(x int, y int) int {
  return x + y
}

func main() {
  fmt.Println(myFunction(1, 2))
}

结果

3
自己试一试 »

命名返回值

在 Go 中,您可以为函数的返回值命名。

示例

这里,我们将返回值命名为 result(类型为 int),并使用裸返回语句返回该值(这意味着我们使用 return 语句,但不指定变量名称)

package main
import ("fmt")

func myFunction(x int, y int) (result int) {
  result = x + y
  return
}

func main() {
  fmt.Println(myFunction(1, 2))
}

结果

3
自己试一试 »

上面的示例也可以这样写。这里,return 语句指定了变量名称

示例

package main
import ("fmt")

func myFunction(x int, y int) (result int) {
  result = x + y
  return result
}

func main() {
  fmt.Println(myFunction(1, 2))
}


将返回值存储在变量中

您也可以将返回值存储在变量中,例如

示例

这里,我们将返回值存储在一个名为 total 的变量中

package main
import ("fmt")

func myFunction(x int, y int) (result int) {
  result = x + y
  return
}

func main() {
  total := myFunction(1, 2)
  fmt.Println(total)
}
自己试一试 »

多个返回值

Go 函数也可以返回多个值。

示例

这里,myFunction() 返回一个整数(result)和一个字符串(txt1

package main
import ("fmt")

func myFunction(x int, y string) (result int, txt1 string) {
  result = x + x
  txt1 = y + " World!"
  return
}

func main() {
  fmt.Println(myFunction(5, "Hello"))
}

结果

10 Hello World!
自己试一试 »

示例

这里,我们将两个返回值存储在两个变量中(ab

package main
import ("fmt")

func myFunction(x int, y string) (result int, txt1 string) {
  result = x + x
  txt1 = y + " World!"
  return
}

func main() {
  a, b := myFunction(5, "Hello")
  fmt.Println(a, b)
}

结果

10 Hello World!
自己试一试 »

如果我们(出于某种原因)不想使用某些返回值,我们可以添加一个下划线(_),以省略此值。

示例

这里,我们希望省略第一个返回值(result - 存储在变量 a 中)

package main
import ("fmt")

func myFunction(x int, y string) (result int, txt1 string) {
  result = x + x
  txt1 = y + " World!"
  return
}

func main() {
   _, b := myFunction(5, "Hello")
  fmt.Println(b)
}

结果

Hello World!
自己试一试 »

示例

这里,我们希望省略第二个返回值(txt1 - 存储在变量 b 中)

package main
import ("fmt")

func myFunction(x int, y string) (result int, txt1 string) {
  result = x + x
  txt1 = y + " World!"
  return
}

func main() {
   a, _ := myFunction(5, "Hello")
  fmt.Println(a)
}

结果

10
自己试一试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.