56
votes
13answers
8k 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 …
38
votes
20answers
2k views
Is “Out Of Memory” A Recoverable Error?
I've been programming a long time, and the programs I see, when they run out of memory, attempt to clean up and exit, i.e. fail gracefully. I can't remember the last time I saw one actually attempt to …
33
votes
6answers
6k views
Solve the memory alignment in C interview question that stumped me
I just finished a test as part of a job interview, and one question stumped me - even using google for reference. I'd like to see what the stackoverflow crew can do with it:
The “memset_16aligned” …
27
votes
12answers
1k views
Since .NET has a garbage collector why do we need finalizers/destructors/dispose-pattern?
If I understand correctly the .net runtime will always clean up after me. So if I create new objects and I stop referencing them in my code, the runtime will clean up those objects and free the memory …
24
votes
7answers
9k views
Structure Vs Class in C#
When you create an instance of a class with the new operator, memory gets allocated on the heap. When you create an instance of a struct with the new operator where does the memory get allocated, on …
23
votes
3answers
3k views
Python memory profiler
I want to know the memory usage of my Python application and specifically want to know what code blocks/portions or objects are consuming most memory.
Google search shows a commercial one is Python …
21
votes
9answers
3k views
What is the difference between new/delete and malloc/free?
What is the difference between new/delete and malloc/free?
Related (duplicate?): In what cases do I use malloc vs new?
18
votes
14answers
3k views
Is there any way to determine the size of a C++ array programmatically? And if not, why?
This question was inspired by a similar question: How does delete[] “know” the size of the operand array?
My question is a little different: Is there any way to determine the size of a C++ array …
17
votes
17answers
956 views
Any reason to overload global new and delete?
Unless you're programming parts of an OS or an embedded system are there any reasons to do so? I can imagine that for some particular classes that are created and destroyed frequently overloading …
17
votes
4answers
1k views
Large Object Heap Fragmentation
The C#/.NET application I am working on is suffering from a slow memory leak. I have used CDB with SOS to try to determine what is happening but the data does not seem to make any sense so I was …
17
votes
9answers
816 views
How to get a CS paper published when not in academia?
I've implemented a newer GC algorithm and thought my findings could help.
What should I do? Publish a blog? Do my best to write a paper and/or just start submitting abstracts to journals? I don't …
17
votes
9answers
2k views
Returning Objects in C++
When returning objects from a class, when is the right time to release the memory?
Example,
class AnimalLister
{
public:
Animal* getNewAnimal()
{
Animal* animal1 = new Animal();
…
16
votes
9answers
605 views
How do I force a program to appear to run out of memory?
I have a C/C++ program that might be hanging when it runs out of memory. We discovered this by running many copies at the same time. I want to debug the program without completely destroying …
16
votes
4answers
1k views
C++ new int[0] — will it allocate memory?
A simple test app:
cout << new int[0] << endl;
outputs:
0x876c0b8
So it looks like it works. What does the standard say about this? Is it always legal to "allocate" empty block of …
16
votes
15answers
1k views
Memory Efficient Programming
What are some best practice for "Memory Efficient C programming".
Mostly for embedded/mobile device what should be the guidelines for having low memory consumptions ?
I guess there should be …
