go语言返回变量存储地址时间:2023-01-31 20:23:28 package main import "fmt" func main() { e:= fmt.Println(e) fmt.Println(&e) //&e; 将给出变量的实际地址。 0xc04203c1d0 }