您有一个带有参数的函数,一个指向类型的指针。type bar struct{...}func foo(arg *bar)之间有什么区别:var b barfoo(&b)和b := new(bar)foo(b)使用new创建分配。 查看完整描述