golang不能直接将其他类型slice赋值给interface类型的slice
其实这个问题在前面可变函数参数列表中提到了,就是不能因为interface{}是万用类型的就将其他类型的变量切片赋值给它,原文链接
问题如下:
I’m writing some code, and I need it to catch the arguments and pass them th
...