Tagged Questions

39
votes
18answers
6k views

C++ Which is faster: Stack allocation or Heap allocation

This question may sound fairly noobish, but this is a debate I had with another coder I work with. I was taking care to stack allocate things where I could, instead of heap allocating them. He was …
37
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 …
29
votes
11answers
577 views

How does it know where my value is in memory?

When I write a program and tell it int c=5, it puts the value 5 into a little bit of it's memory, but how does it remember which one? The only way I could think of would be to have another bit of …
29
votes
13answers
853 views

Have you dealt with space hardening?

I am very eager to study best practices when it comes to space hardening. For instance, I've read (though I can't find the article any longer) that some core parts of the Mars rovers did not use …
29
votes
14answers
2k views

Anatomy of a “Memory Leak”

In .NET perspective: What is a Memory Leak? How to understand whether your application leaks? What are the effects? How to prevent a memory leak? If your application has memory leak, does it go away …
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 …
23
votes
13answers
1k views

C Memory Management

I've always heard that in C you have to really watch how you manage memory. And I'm still beginning to learn C, but thus far, I have not had to do any memory managing related activities at all.. I …
23
votes
13answers
4k views

Understanding reference counting with Cocoa / Objective C

I'm just beginning to have a look at Objective C and Cocoa with a view to playing with he iPhone SDK. I'm reasonably comfortable with C's malloc and free concept, but Cocoa's references counting …
20
votes
7answers
672 views

Reducing memory usage of .NET applications?

I was wondering if anyone had any tips to reduce the memory usage of .NET applications. Consider the following simple C# program: class Program { static void Main(string[] args) { …
20
votes
24answers
7k views

is a great memory a requirement for great programming

Do you think having a great memory is REQUIRED to be a great programmer? I don't consider myself a great programmer but I do think I am decent. But my memory is REALLY bad so I find myself always …
18
votes
12answers
2k views

IE 8 dropping memory pages?

This question is a spin-off/evolution of this question. (That question got marked as resolved because I put a bounty on it and it auto-resolved, but it never really got answered.) The summary is …
17
votes
12answers
9k views

Linux: How to measure actual memory usage of an application or process?

Hi, How do you measure the memory usage of an application or process in Linux? I've read here that "ps" is not an accurate tool to use for this intent. Thanks, Kenneth
16
votes
9answers
1k views

Why use boolean instead of char?

Hi, This is a silly question but why does a Boolean take up 4 bytes and a char take up 2 in the .NET framework? It makes me wonder if I should start using chars like a boolean to save memory in …
15
votes
9answers
7k views

Java maximum memory on Windows XP

I've always been able to allocate 1400 megabytes for Java SE running on 32-bit Windows XP (Java 1.4, 1.5 and 1.6). java -Xmx1400m ... Today I tried the same option on a new Windows XP machine using …
15
votes
18answers
2k views

How to dispose a class in .net?

The .net garbage collector will eventually free up memory, but what if you want that memory back immediately? What code do you need to use in a class myclass to call myclass.dispose and free up …

1 2 3 4 5 79 next
15 30 50 per page