C ++ tool for visualizing memory alignment?

Is there a tool, perhaps a plug-in for Visual Studio or something that visualizes for me the memory allocation of my classes and structures?

THX!

+5
source share
3 answers

You may be interested in using Cruncher # .

Link: Maciej Sinilo original blog post about Cruncher #.

+1
source

, Linux PaHole, "" Linux, DWARF2 ELF.

+1

It is built into Visual Studio Debugger. It was called Watch. You can see the address of each element if "+" is the name of an instance of the class.

0
source

All Articles