koushr

Results 4 comments of koushr

![Image](https://github.com/user-attachments/assets/1f105079-16c2-4d2a-92ca-fafe3e2f5282)

func main() { s := "脑子进煎鱼了" fmt.Printf("main 内存地址:%p\n", &s) hello(&s) } func hello(s *string) { fmt.Printf("hello 内存地址:%p\n", &s) }

func main() { s := "脑子进煎鱼了" fmt.Printf("main 内存地址:%p\n", &s) hello(&s) } func hello(s *string) { fmt.Printf("hello 内存地址:%p\n", &s) }

func main() { s := "脑子进煎鱼了" fmt.Printf("main 内存地址:%p\n", &s) hello(&s) } func hello(s *string) { fmt.Printf("hello 内存地址:%p\n", &s) } hello里面不应该是这样打印吗? fmt.Printf("hello 内存地址:%p\n", s) 这样打印出来结果是一样的