memory management - Find the content of java.exe process apart from the HeapDump and ThreadDump -
i have java program in quite more number of operations on object of class. object created inside loop runs finite number of time. once loop completed, call system.gc() clear used space in heap. process java.exe in task manager still uses more ram. there way find stored inside process? or there method perform dump , compare in readable form?
your java.exe
won't free memory has once allocated. garbage collection frees other processes inside java program.
if topic interesting you, should read documentation memory handling inside java. complex answered appropriately here.
have here pointers: https://softwareengineering.stackexchange.com/questions/176880/which-part-of-the-memory-is-used-for-the-garbage-collector
Comments
Post a Comment