我想调用类似" ZRem(键字符串,成员...字符串)"的方法。使用key =" user_queue"和成员= [" v1"," v2",..." v50"]。
我尝试了类似
的内容func ZRem(key string, members ...string){
// do something
}
func main(){
// do something
// task_ids is a []string
ZRem("user_queue", task_ids[0], task_ids[1:]...)
}
但收到编译错误。
too many arguments in call to ZRem
答案 0 :(得分:4)
ZRem("user_queue", task_ids...)