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)?
|
|
You could use a memory profiler like .NET Memory Profiler (http://memprofiler.com/) or CLR Profiler (free) |
|||
|
|
|
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 ;) |
||||
|
|
|
The ANTS memory profiler will tell you exactly how much is allocated for each object/method/etc. |
||||
|
|
|
Here's a related post where we discussed determining the size of reference types. |
|||
|
|
|
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/ |
||||
|
|
|
You can also use WinDbg and either SOS or SOSEX (like SOS with with a lot more commands and some existing ones improved) WinDbg extensions. The command you would use to analyze an object at a particular memory address is !objsize One VERY important item to remember is that !objsize only gives you the size of the class itself and DOES NOT necessarily include the size of the aggregate objects contained inside the class - I have no idea why it doesn't do this as it is quite frustrating and misleading at times. I've created 2 Feature Suggestions on the Connect website that ask for this ability to be included in VisualStudio. Please vote for the items of you would like to see them added as well! EDIT: I'm adding the following to clarify some info from the answer provided by Charles Bretana:
As an aside, there are about 8 different heaps that the CLR uses:
HTH |
||||
|
|
|
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 extra storage for some meta 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. |
|||||||||
|
|
If you can - Serialize it!
|
|||||||
|