我有以下类:
public class MyClass { public string Name { get; set; } public int Age { get; set; } public double Amount { get; set; } }
当我尝试通过使用WinDbg在64位系统上找出这个类的大小时,我得到的大小为40
我无法理解,只要我看到MyClass应该有
8 bytes for SyncBlock 8 bytes for TypeHandle 8 bytes for string reference 4 bytes for Int32 8 bytes for double = 36 bytes
我没有10个声望,所以我无法发布图像.
任何人都知道为什么WinDbg显示4个额外的字节?
解决方法
我相信你所看到的是需要匹配64位构建中的8字节边界(和32位构建中的4字节边界)的效果. 40是在8字节边界上的最接近的大小> = 36.这些链接谈论对象大小:
Of Memory and strings (Jon Skeet’s blog)
Benchmarking C# Struct and Object Sizes
Drill Into .NET Framework Internals to See How the CLR Creates Runtime Objects