Skip to content

Instantly share code, notes, and snippets.

@LarryLuTW
Last active November 24, 2020 12:19
Show Gist options
  • Save LarryLuTW/12ba294967245491795694a154fe8473 to your computer and use it in GitHub Desktop.
Save LarryLuTW/12ba294967245491795694a154fe8473 to your computer and use it in GitHub Desktop.
type T1 struct {
f1 int8 // 1 byte
f2 int64 // 8 bytes
f3 int32 // 4 bytes
}
func main() {
t1 := T1{}
fmt.Println(unsafe.Sizeof(t1)) // 24 bytes
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment