如何理解 WinDBG SOS 中 !dumpheap 的 -min/-max 选项

How to understand the -min/-max options of !dumpheap in WinDBG SOS

文档说它是用来限制输出对象的大小,但根据我的测试,这不是我所期望的:

0:000> !dumpheap -mt 000007fee12406a8 -max 400 -min 399
Address               MT     Size
000000000d1dc1f8 000007fee12406a8      936     
000000000d62bed8 000007fee12406a8     1016     
000000000d630d00 000007fee12406a8      984     
000000000d633aa8 000007fee12406a8      984     
000000000d65f368 000007fee12406a8      952     
000000000d685ff0 000007fee12406a8      952     
000000000d6b2150 000007fee12406a8      952    

那么如何理解-min-max选项呢?

WinDbg 的默认数字格式是十六进制。 0x400 是 1024,0x399 是 921,这解释了输出。如果您想要十进制数,请使用 0n 前缀,例如0n4000n399.