A heap (data structure) is a tree that is ordered with respect to depth.
Programming language books explain that value types are created on the stack, and reference types are created on the heap, …
memory-management stack language-agnostic heap dynamic-memory-allocationI am getting the following exception repeatedly each time I try to run the program. Error occurred during initialization of …
java jvm heapIs there a Command-line Tool (Linux) to check Heap Size (and Used Memory) of a Java Application? I have tried …
java linux performance memory heapI am getting this error in a program that creates several (hundreds of thousands) HashMap objects with a few (15-20) …
java hashmap heap heap-memory g1gcIf I omit the -Xmxn option from the Java command line then a default value will be used. According to …
java heap heap-memoryI have a production server running with the following flag: -XX:+HeapDumpOnOutOfMemoryError Last night it generated a java-38942.hprof file …
java profiling heapCan someone help explain how can building a heap be O(n) complexity? Inserting an item into a heap is …
algorithm heap complexity-theory constructionI was told I can add the -XX:+HeapDumpOnOutOfMemoryError parameter to my JVM start up options to my JBoss start …
java jboss memory-leaks heapI am looking for a .NET implementation of a priority queue or heap data structure Priority queues are data structures …
c# .net data-structures heap priority-queueHow do I set Java's min and max heap size through environment variables? I know that the heap sizes can …
java environment-variables heap