go-可变参数

summer_last ·
s := []string{"4", "5", "6"} var d []interface{} = []interface{}{s} //直接传入s数组,也可以,是否可不要append了呢? testParams(d...)
#1