出错代码:err = client.Call("Math.Add",args,rep)
出错原因:链接采用非指针,
解决方法:改成指针err = client.Call("Math.Add",&args,&rep)