About 36,600,000 results
Open links in new tab
  1. What and where are the stack and heap? - Stack Overflow

    Sep 17, 2008 · What are the stack and heap? Where are they located physically in a computer's memory? To what extent are they controlled by the OS or language run-time? What is their …

  2. malloc - What is a Memory Heap? - Stack Overflow

    Feb 22, 2010 · A memory heap is a location in memory where memory may be allocated at random access. Unlike the stack where memory is allocated and released in a very defined …

  3. When would I want to use a heap? - Stack Overflow

    Apr 14, 2009 · Besides the obvious answer of a Priority Queue, when would a heap be useful in my programming adventures?

  4. java.lang.OutOfMemoryError: Java heap space - Stack Overflow

    If you want to increase your heap space, you can use java -Xms<initial heap size> -Xmx<maximum heap size> on the command line. By default, the values are based on the JRE …

  5. What do I use for a max-heap implementation in Python?

    Python includes the heapq module for min-heaps, but I need a max-heap. What should I use for a max-heap implementation in Python?

  6. What's the difference between Stack Memory and Heap Memory?

    The heap is a part in memory that is shared by all threads of a process. Space can be allocated on the heap using malloc and has to be freed with free when it is not used anymore to prevent …

  7. Heap size in C# / .Net Framework - Can it grow and how?

    The heap in .Net is a portion of memory that for practical purposes can reach a maximum of around 1.5GB for 32-bit processes and unlimited for 64-bit (again, for practical purposes), and …

  8. c++ - How to debug heap corruption errors? - Stack Overflow

    A bit late to the party, but I noticed a significant increase memory usage my the application I am debugging when I turned on Page Heap. Unfortunately up to the point the (32bit) application …

  9. How to increase application heap size in Eclipse? - Stack Overflow

    Mar 9, 2013 · This will increase the heap size for all of Eclipse, not just the target application.

  10. How do I solve OutOfMemoryError: Java heap space

    May 3, 2013 · You can increase your heap/stack size using following commands: -Xms<size> set initial Java heap size -Xmx<size> set maximum Java heap size -Xss<size> set java thread …