Go 結構體使用注意事項和細節

結構體使用注意事項和細節 結構體的全部字段在內存中是連續的 //結構體 type Point struct { x int y int } //結構體 type Rect struct { leftUp, rightDown Point } func main() { r1 := Rect{Point{1,2}, Point{3,4}} //r1有四個int, 在內存中是連續
相關文章
相關標籤/搜索