Golang支持可变函数吗?

前端之家收集整理的这篇文章主要介绍了Golang支持可变函数吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不知道有没有反正我可以定义一个未知数量的变量在Go中的函数

这样的东西

func Add(num1... int) int {
    return args
  }

  func main() {
        fmt.Println("Hello,playground")
        fmt.Println(Add(1,3,4,5,))
  }

我想为任何数量的输入泛化添加函数

你已经得到它,从我能告诉,但语法是… int。见 the spec

Given the function and call

06000

within Greeting,who will have the value []string{"Joe","Anna","Eileen"}

原文链接:https://www.f2er.com/go/187865.html

猜你在找的Go相关文章