摘要:
具体可以参考b站的幼麟实验室,很硬核 type P struct { a bool b int32 c int8 d int64 e byte } var p P fmt.Printf("%v\n", unsafe.Sizeof(p) // 32 成员变量对齐方式为: min(8, 1) = 1,由 阅读全文
摘要:
package main import ( "fmt" ) // Menu 菜单,对应数据库的结构 type Menu struct { ID int ParentID int Name string } // TreeList 菜单,给前端的结构 type TreeList struct { ID 阅读全文