import unsafe "unsafe"type INotifyInfo struct { Wd int32 // Watch descriptor Mask uint32 // Watch mask cookie uint32 // cookie to synchronize two events Len uint32 // Length (including NULs) of name}func doSomething() { var info INotifyInfo const infoSize = unsafe.Sizeof(info) ...}注意: OP错误。unsafe.Sizeof确实在示例Coord3d结构上返回24。请参阅下面的评论。



