将第一个struct改写为第二种可以通过排序结构体struct中字段提升性能,降低内存使用率

type BadStruct struct {
age uint8
IdCardNumber uint64
DateOfBirth uint16
}

type GoodStruct struct {
age uint8
DateOfBirth uint16
IdCardNumber uint64
}