如何在不按值(副本)将参数传递给 fmt 的情况下在 go 中打印?
也许是这样的(假设的 * 标志)?
fmt.Printf( "Value of pointer %*s", &mystruct.somelargestring )
现在:
fmt.Printf( "val is %v, %v\n", &mystruct.val, mystruct.Val ) val is 0xf84061d170, somestring
叮当猫咪
相关分类