구조체 멤버 포인터의 표현 > IT 기술백서

[code]

fmt.Println(&user) // 0xc000006f48

fmt.Println(&user.ID) // 0xc0003cf730

fmt.Println(&(user).ID) // 0xc0003cf730

fmt.Println(&(user.ID)) // 0xc0003cf730

[/code]

 

&user.ID, &(user).ID, &(user.ID) 다 동일하다.

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

위로 스크롤