Tagged Questions
The heap is process memory set aside for dynamic allocation.
514
votes
13answers
82k views
What and where are the stack and heap
Programming language books usually explain that value types are created on the stack, and reference types created on the heap, without really explaining what these two things are. With my only ...
52
votes
13answers
128k views
How to deal with “java.lang.OutOfMemoryError: Java heap space” error (64MB heap size)
I am writing a client-side Swing application (graphical font designer) on Java 5. Recently, I am running into "java.lang.OutOfMemoryError: Java heap space" error because I am not being conservative on ...
39
votes
23answers
4k views
Why not use pointers for everything in C++?
Suppose that I define some class:
class Pixel {
public:
Pixel(){ x=0; y=0;};
int x;
int y;
}
Then write some code using it. Why would I do the following?
Pixel p;
p.x = 2;
...
34
votes
10answers
3k views
What is memory fragmentation?
I've heard the term "memory fragmentation" used a few times in the context of C++ dynamic memory allocation. I've found some questions about how to deal with memory fragmentation, but can't find a ...
34
votes
12answers
19k views
How to debug heap corruption errors?
I am debugging a (native) multi-threaded C++ application under VS2008. On seemingly random occasions, I get a "Windows has triggered a break point..." error with a note that this might be due to a ...
31
votes
4answers
3k views
JVM heap replication between two machines
What are the basic principles of how two separable computers connected within the same network running the same Java application maintain the same state by syncing their heap between each other?
I ...
31
votes
10answers
8k views
Proper stack and heap usage in C++?
I've been programming for a while but It's been mostly Java and C#. I've never actually had to manage memory on my own. I recently began programming in C++ and I'm a little confused as to when I ...
30
votes
3answers
758 views
Is memory allocation a system call?
Is memory allocation a system call? For example, malloc and new. Is the heap shared by different processes and managed by the OS. What about private heap? If memory allocation in the heap is managed ...
29
votes
8answers
14k views
Priority queue in .Net
I am looking for a .Net (preferably C#) implementation of a priority queue or heap.
Unless I am looking in the wrong place, there isn't one in the framework. Is anyone aware of a good one, or should ...
26
votes
6answers
3k views
Why are two different concepts both called “heap”?
Why are the runtime heap used for dynamic memory allocation in C-style languages and the data structure both called "the heap"? Is there some relation?
25
votes
8answers
19k views
Stack,Static and Heap in C++
I've searched, but I've not understood very well these three concepts. When do I have to use dynamic allocation (in the heap) and what's its real advantage? What are the problems of static and stack? ...
23
votes
14answers
70k views
Java Refuses to Start - Could not reserve enough space for object heap
Background
We have a pool of aproximately 20 linux blades. Some are running Suse, some are running Redhat. ALL share NAS space which contains the following 3 folders:
/NAS/app/java - a symlink ...
22
votes
5answers
24k views
How do I analyze a .hprof file?
I have a production server running with the following flag: -XX:+HeapDumpOnOutOfMemoryError
Last night it generated a java-38942.hprof file when our server encountered a heap error. It turns out that ...
21
votes
6answers
5k views
Arrays, heap and stack and value types
int[] myIntegers;
myIntegers = new int[100];
In the above code, is new int[100] generating the array on the heap? From what I've read on CLR via c#, the answer is yes. But what I can't understand, ...
19
votes
5answers
1k views
Why is the maximum size of the Java heap fixed?
It is not possible to increase the maximum size of Java's heap after the VM has started. What are the technical reasons for this? Do the garbage collection algorithms depend on having a fixed amount ...
17
votes
5answers
5k views
How do I find the median of numbers in linear time using heaps?
Wikipedia says:
Selection algorithms: Finding the min,
max, both the min and max, median, or
even the k-th largest element can be
done in linear time using heaps.
All it says is that it ...
17
votes
6answers
9k views
Java heap terminology: young, old and permanent generations?
I'm trying to understand how the concepts of young, old and permanent generations in the Java heap terminology, and more specifically the interactions between the three generations.
My questions are:
...
16
votes
6answers
1k views
How do games like GTA IV not fragment the heap?
I'm interested in the type of memory managment a game like GTA IV might use given that it needs to create and delete lots of objects very quickly. How do the avoid fragmenting the heap and other ...
16
votes
5answers
606 views
Why are heaps in c++ implemented as algorithms instead of containers?
I was wondering why the heap concept is implemented as algorithms (make_heap, pop_heap, push_heap, sort_heap) instead of a container. I am especially interested is some one's solution can also ...
16
votes
5answers
8k views
What's the differences between VirtualAlloc and HeapAlloc?
There are lots of method to allocate memory in windows enviorment,
such as VirtualAlloc/HeapAlloc/malloc/new.
Thus , what's the difference among them?
15
votes
4answers
2k views
What Happens When Stack and Heap Collide
I am curious to know what happens when the stack and the heap collide. If anybody has encountered this, please could they explain the scenario.
Thanks in advance.
13
votes
4answers
4k views
Young , Tenured and Perm generation
I'm confused with Heap,Young,Tenured and Perm generation.
Could anyone please explain?
13
votes
11answers
2k views
Can a C++ class determine whether it's on the stack or heap?
I have
class Foo {
....
}
Is there a way for Foo to be able to separate out:
function blah() {
Foo foo; // on the stack
}
and
function blah() {
Foo foo* = new Foo(); // on the heap
}
I ...
13
votes
7answers
1k views
Can Sun JVM handle gigantic heap sizes without problems, and how?
I have heard several people claiming that you can not scale the JVM heap size up. I've heard claims of the practical limit being 4 gigabytes (I heard an IBM consultant say that), 10 gigabytes, 32 ...
12
votes
2answers
327 views
Serializable, cloneable and memory use in Java
I am using an inner class that is a subclass of a HashMap. I have a String as the key and double[] as the values. I store about 200 doubles per double[]. I should be using around 700 MB to store ...
12
votes
2answers
557 views
How do Haskell compilers decide whether to allocate on the heap or the stack?
Haskell doesn't feature explicit memory management, and all objects are passed by value, so there's no obvious reference counting or garbage collection either. How does a Haskell compiler typically ...
12
votes
4answers
1k views
Convert a maximum heap to a binary search tree
We are given an array of 2m - 1 distinct, comparable elements, indexed starting from 1.
We can view the array as a complete binary tree:
Node is placed at index i.
Left child is placed at 2i.
Right ...
12
votes
9answers
1k views
What is the origin of the term “heap” for the free store?
I am trying to find the official (or a good enough) reason that the free store is commonly referred to as the heap.
Except for the fact that it grows from the end of the data segment, I can't really ...
11
votes
4answers
112 views
In PHP, what happens in memory when we use mysql_query
I used to fetch large amount of data using mysql_query then iterating through the result one by one to process the data. Ex:
$mysql_result = mysql_query("select * from user");
while($row = ...
11
votes
3answers
352 views
Java heap size not entirely used
I'm currently monitoring my running java application with Visual VM: http://visualvm.java.net/
I'm stressing the memory usage by with -Xmx128m.
When running I see the heap size increasing to 128m ...
11
votes
4answers
3k views
PriorityQueue/Heap Update
Does Java have an easy way to reevaluate a heap once the priority of an object in a PriorityQueue has changed? I can't find any sign of it in Javadoc, but there has to be a way to do it somehow, ...
11
votes
5answers
5k views
Heap versus Stack allocation implications (.NET)
From a SO answer about Heap and Stack, it raised me a question: Why it is important to know where the variables are allocated?
At another answer someone pointed that the stack is faster. Is this the ...
10
votes
2answers
148 views
Total memory used by Java process and heap size
I wrote an application using Spring Batch. I can see with VisualVM that the heap size is about 22 MB. But, when I use Process Explorer (on Windows) to see how much memory is used by it, the difference ...
10
votes
4answers
552 views
How to implement a memory heap
Wasn't exactly sure how to phrase the title, but the question is:
I've heard of programmers allocating a large section of contiguous memory at the start of a program and then dealing it out as ...
10
votes
5answers
2k views
Memory allocation: Stack vs Heap?
I am getting confuse with memory allocation basics between Stack vs Heap, as per the standard definition (things which everybody says), all value types will get allocated onto a Stack and reference ...
10
votes
3answers
17k views
Understanding max JVM heap size - 32bit vs 64bit
I've read the max heap size on 32bit Windows is ~1.5GB which is due to the fact that the JVM requires contiguous memory. Can someone explain the concept of "contiguous memory" and why you only have ...
10
votes
4answers
4k views
Java Array is stored in stack or heap?
if I have an array declaration like this,
int a[];
here a is an array of integer type. Where this array of integer is stored on heap or stack?This is a primitve type int, all primitive types are ...
10
votes
3answers
10k views
increase the java heap size permanently?
Is there a way that I can set the default heap size for the jvm on my own computer? I want to set it to 1g, because I'm always running custom programs that always hit the overage point in the default ...
10
votes
11answers
2k views
How do you make your Java application memory efficient?
How do you optimize the heap size usage of an application that has a lot (millions) of long-lived objects? (big cache, loading lots of records from a db)
Use the right data type
Avoid ...
10
votes
1answer
14k views
Using HeapDumpOnOutOfMemoryError parameter for heap dump for JBoss
I was told I can add the -XX:+HeapDumpOnOutOfMemoryError parameter to my JVM start up options to my JBoss start up script to get a heap dump when we get an out of memory error in our application. I ...
10
votes
11answers
10k views
C++ Multi-dimensional Arrays on the Heap
I went looking for this the other day, and thought it should probably be added to StackOverflow's reservoir of questions.
How would I go about dynamically allocating a multi-dimensional array?
10
votes
4answers
1k views
Local variables with Delegates
This is clearly not appears like it wouldn't be a best practice, but can someone explain why or how this works. Or recommend a good book to learn more.
//The constructor
public Page_Index() {
...
10
votes
12answers
7k views
Of Memory Management, Heap Corruption, and C++
So, I need some help. I am working on a project in C++. However, I think I have somehow managed to corrupt my heap. This is based off the fact that I added a std::string to a class and assigning it a ...
9
votes
9answers
1k views
Java consumes too much memory
my Java written application consumes way too much memory.
How does program work : User selects a date from calendar (GUI) and application loads data into JTable component. Everytime data is loaded, ...
9
votes
10answers
12k views
What does “zend_mm_heap corrupted” mean
All of the sudden I've been having problems with my application that I've never had before. I decided to check the Apache's error log, and I found an error message saying "zend_mm_heap corrupted". ...
9
votes
7answers
6k views
How to dynamically monitor Java heap size?
I am trying to monitor the java heap size dynamically. Does anybody know how to get the maxmium memory used in the process of running a piece of codes? Does the Runtime.maxMemory() do the trick? ...
9
votes
5answers
3k views
how to choose the jvm heap size?
What i usually do concerning the jvm heap size is setting the max value really high to avoid the infamous OutOfMemoryException.
However, this strategy (or lack of strategy) doesn't seem to be really ...
9
votes
6answers
2k views
Stack vs. Heap in .NET
In your actual programming experience, how did this knowledge of STACK and HEAP actually rescue you in real life? Any story from the trenches? Or is this concept good for filling up programming books ...
9
votes
8answers
4k views
9
votes
8answers
1k views
Is there a reason to call delete in C++ when a program is exiting anyway?
In my C++ main function, for example, if I had a pointer to a variable which uses heap memory (as opposed to stack memory) - is this automatically deallocated after my application exits? I would ...