如何将可变参数传递给其他函数

时间:2013-07-10 16:48:21

标签: go

有什么方法可以使Warn功能起作用吗?

func Warn(s string, args ...interface{}) {
    log.Printf("warn: "+s, args)
}

func main() {
    Warn("%d apples, %s ", 10, "good") //it should output the same as below
    log.Printf("%d apples, %s ", 10, "good")
}

输出:

2009/11/10 23:00:00 warn: [10 %!d(string=good)] apples, %s(MISSING) 
2009/11/10 23:00:00 10 apples, good

我正在努力做到这一点:http://play.golang.org/p/W62f2NGDUe

1 个答案:

答案 0 :(得分:8)

知道了:

func Warn(s string, args ...interface{}) {
    log.Printf("warn: "+s, args...)
}

现在可行。