将数组解包为参数

所以在 Python 和 Ruby 中有用于将数组解包为参数的 splat 运算符 (*)。在 Javascript 中有 .apply() 函数。有没有办法在 Go 中将数组/切片解包为函数参数?这方面的任何资源也会很棒!


类似的东西:


func my_func(a, b int) (int) {

    return a + b

}


func main() {

    arr := []int{2,4}

    sum := my_func(arr)

}

如果我犯了句法/各种错误,我深表歉意。我是 Go 的新手。


万千封印
浏览 146回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go