I'm developing an application which currently have hundreds of objects created.
Is it possible to determine (or approximate) the memory allocated by an object (class instance)?
|
1
|
|||||||||
|
|
|
You could use a memory profiler like .NET Memory Profiler (http://memprofiler.com/) or CLR Profiler (free) |
||
|
|
|
|
Here's a related post where we discussed determining the size of reference types. |
||
|
|
|
|
The antz profiler will tell you exactly how much is allocated for each object/method/etc. |
||
|
|
|
|
To get a general sense for the memory allocation in your application, use the following sos command in WinDbg
Note that !dumpheap only gives you the bytes of the object type itself, and doesn't include the bytes of any other object types that it might reference. If you want to see the total held bytes (sum all the bytes of all objects referenced by your object) of a specific object type, use a memory profiler like dot Trace - http://www.jetbrains.com/profiler/ |
|||
|
|
|
A coarse way could be this in-case you wanna know whats happening with a particular object
process wide stuff could be obtained perhaps like this
hope this helps ;) |
|||
|
|
|
|
Each "class" requires enough memory to hold all of it's jit-compiled code for all it's members that have been called by the runtime, (although if you don;t call a method for quite some time, the CLR can release that memory and re-jit it again if you call it again... plus enough memory to hold all static variables declared in the class... but this memory is allocated only once per class, no matter how many instances of the class you create. For each instance of the class that you create, (and has not been Garbage collected) you can approximate the memory footprint by adding up the memory usage by each instance-based declared variable... (field) reference variables (refs to other objects) take 4 or 8 bytes (32/64 bit OS ?) int16, Int32, Int64 take 2,4, or 8 bytes, respectively... string variable takes exytra storage for some emta data elements, (plus the size of the address pointer) In addition, each reference variable in an object could also be considered to "indirectly" include the memory taken up on the heap by the object it points to, although you would probably want to count that memory as bellonging to that object not this one that references it... etc. etc. |
||||||
|