packagemainimport"fmt"funcmain(){varcontact1struct{NamestringIdintCellstring}fmt.Println(contact1)contact1.Id=1contact1.Name="John Doe"contact1.Cell="1 234-567-890"// Copy anonymous struct into the other variable
contact2:=contact1contact2.Name="Jane Doe"contact2.Id=2fmt.Println(contact1)fmt.Println(contact2)}
$ ./go_anonymous_struct
{ 0 }
{John Doe 1 1 234-567-890}
{Jane Doe 2 1 234-567-890}
구조체를 포함하는 구조체
먼저 다른 구조체를 일반 타입처럼 포함하는 방식으로 실험해보자. 추가로 내부 구조체를 변수로 선언한 뒤, 바로 복사가 가능한지, 구조체 내부 필드 중 일부만 초기화하는 것도 확인해보자.
packagemainimport("fmt""time")typeUserstruct{NamestringIdintAgeint}typeVipUserstruct{UserInfoUserLevelintSincetime.Time}funcmain(){varjohnUser=User{"John Doe",1,30}varjohnVipVipUser=VipUser{UserInfo:john,Level:1}janeVip:=VipUser{User{"Jane Doe",2,32},2,time.Now()}fmt.Println(johnVip)fmt.Println(janeVip)fmt.Printf("VIP user %s became VIP since %v",janeVip.UserInfo.Name,janeVip.Since)}
$ ./go_struct_in_struct
{{John Doe 1 30} 1 0001-01-01 00:00:00 +0000 UTC}
{{Jane Doe 2 32} 2 2021-05-31 13:06:28.78326 +0900 KST m=+0.000120543}
VIP user Jane Doe became VIP since 2021-05-31 13:06:28.78326 +0900 KST m=+0.000120543
packagemainimport("fmt""time")typeUserstruct{NamestringIdintAgeint}typeVipUserstruct{UserLevelintSincetime.Time}funcmain(){varjohnUser=User{"John Doe",1,30}varjohnVipVipUser=VipUser{User:john,Level:1}janeVip:=VipUser{User{"Jane Doe",2,32},2,time.Now()}fmt.Println(johnVip)fmt.Println(janeVip)fmt.Printf("VIP user %s became VIP since %v",janeVip.Name,janeVip.Since)}
$ ./go_embedded_struct
{{John Doe 1 30} 1 0001-01-01 00:00:00 +0000 UTC}
{{Jane Doe 2 32} 2 2021-05-31 13:13:14.075062 +0900 KST m=+0.000131959}
VIP user Jane Doe became VIP since 2021-05-31 13:13:14.075062 +0900 KST m=+0.000131959
구조체 패딩
go에서도 구조체 내 멤버 접근 속도를 빠르게 하기 위해 메모리 패딩을 수행한다. 확실한 비교를 위해 책에 나온 예제에서 주소 값까지 찍어보자.