1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-23 20:02:22 +00:00
This commit is contained in:
hopehook 2021-12-29 14:48:27 +08:00
parent 3015641fab
commit 795aebfb4d

View File

@ -320,7 +320,7 @@ func makechan(chanType *byte, size int) (hchan chan any)
*图 3-7 结构体变量定义*
变量也在data段分配空间变量结构体成员的地址也是依次从低向高排列。
变量也在data段分配空间变量结构体成员的地址也是依次从低向高排列。
因此`[2]int``image.Point`类型底层有着近似相同的内存布局。