我想在 Go 中调用一个函数,并将参数名称附加到参数值
func sum(a int, b int) int {
return a + b
}
func main() {
result := sum(a=4, b=5) // result == 9
是否可以?
绝地无双
开满天机
相关分类