如何在 Golang 中传递一个函数作为参数,它可能有多个参数,例如fmt.Printf?
fmt.Printf
第一个问题是必须首先定义要传递的函数的类型。
type FunctionWithVariableArgumentLength func(s string, object1 type1, ..., objectn typen)
第二个问题是人们不知道列表中的参数可能有什么类型,比如 in fmt.Printf。
拉莫斯之舞
相关分类