This tag is for memory issues in programming. For installing memory, etc. see ServerFault.com or SuperUser.com
119
votes
22answers
26k views
C++ Which is faster: Stack allocation or Heap allocation
This question may sound fairly elementary, but this is a debate I had with another developer I work with.
I was taking care to stack allocate things where I could, instead of heap allocating them. He ...
110
votes
7answers
2k views
Why does appending “” to a String save memory?
I used a variable with a lot of data in it, say String data.
I wanted to use a small part of this string in the following way:
this.smallpart = data.substring(12,18);
After some hours of debugging ...
93
votes
4answers
3k views
What happens when a computer program runs?
I know the general theory but I can't fit in the details.
I know that a program resides in the secondary memory of a computer. Once the program begins execution it is entirely copied to the RAM. Then ...
88
votes
14answers
94k views
Android: Strange out of memory issue
I am not sure where to start to explain this one.
I have a list view with a couple image buttons on each row. When you click the list row, it launches a new activity. If you review some of my other ...
76
votes
8answers
2k views
In C, do braces act as a stack frame?
If I create a variable within a new set of curly braces, is that variable popped off the stack on the closing brace, or does it hang out until the end of the function? For example:
void foo() {
...
73
votes
15answers
136k views
Linux: How to measure actual memory usage of an application or process?
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
71
votes
14answers
16k views
Understanding reference counting with Cocoa and Objective-C
I'm just beginning to have a look at Objective-C and Cocoa with a view to playing with the iPhone SDK. I'm reasonably comfortable with C's malloc and free concept, but Cocoa's references counting ...
63
votes
13answers
3k views
How does this program work?
#include <stdio.h>
int main() {
float a = 1234.5f;
printf("%d\n", a);
return 0;
}
It displays a 0!! How is that possible? What is the reasoning?
I have deliberately put a %d in ...
62
votes
22answers
4k 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 ...
62
votes
10answers
20k views
In Java, what is the best way to determine the size of an object?
For example, let's say I have an application that can read in a CSV file with piles of data rows. I give the user a summary of the number of rows based on types of data, but I want to make sure that ...
46
votes
12answers
3k 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 ...
43
votes
3answers
2k views
Why does jquery leak memory so badly?
This is kind of a follow-up to a question I posted last week:
http://stackoverflow.com/questions/2429056/simple-jquery-ajax-call-leaks-memory-in-ie
I love the jquery syntax and all of its nice ...
42
votes
19answers
2k views
Why is address zero used for null pointer?
In C (or C++ for that matter), pointers are special if they have the value zero: I am adviced to set pointers to zero after freeing their memory, because it means freeing the pointer again isn't ...
39
votes
10answers
42k 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 ...
39
votes
7answers
44k views
How to monitor the computer's cpu, memory, and disk usage in Java?
I would like to monitor the following system information in Java:
current cpu usage** (percent)
available memory* (free/total)
available disk space (free/total)
*note that I mean overall memory ...
37
votes
6answers
38k views
java.lang.OutOfMemoryError: bitmap size exceeds VM budget - Android
I developed an application that uses lots of images on Android.
The app runs once, fills the information on the screen (Layouts, Listviews, Textviews, ImageViews, etc) and user reads the information.
...
37
votes
7answers
6k views
Reducing memory usage of .NET applications?
What are some tips to reduce the memory usage of .NET applications? Consider the following simple C# program.
class Program
{
static void Main(string[] args)
{
Console.ReadLine();
...
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
4answers
13k views
How to determine CPU and memory consumption from inside a process?
I once had the task of determining the following performance parameters from inside a running application:
Total virtual memory available
Virtual memory currently used
Virtual memory currently used ...
33
votes
13answers
3k 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 ...
32
votes
15answers
1k views
How should I map string keys to values in Java in a memory-efficient way?
I'm looking for a way to store a string->int mapping. A HashMap is, of course, a most obvious solution, but as I'm memory constrained and need to store 2 million pairs, 7 characters long keys, I need ...
32
votes
2answers
621 views
Does multithreading emphasize memory fragmentation?
Description
When allocating and deallocating randomly sized memory chunks with 4 or more threads using openmp's parallel for construct, the program seems to start leaking considerable amounts of ...
30
votes
8answers
1k views
Why is it a memory leak? What could I catch if I shall use such things in C++?
I wonder, if I allocate memory for the pointer of some class/struct, why shall I get the memory leak?
For example:
class A { ... };
struct B { ... };
A *object1 = new A();
B object2 = *(new B());
...
30
votes
11answers
4k views
Setting Objects to Null/Nothing after use in .NET
Should you set all the objects to null (Nothing in VB.NET) once you have finished with them?
I understand that in .NET it is essential to dispose of any instances of objects that implement the ...
29
votes
11answers
715 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 ...
28
votes
3answers
15k views
Javascript memory profiler for Firefox
Is there a tool/plugin/function for Firefox that'll dump out a memory usage of Javascript objects that you create in a page/script? I know about Firebug's profiler but I'd like something more than ...
28
votes
31answers
11k views
Memory management in C++
What are some general tips to make sure I don't leak memory in C++ programs ? How do I figure out who should free memory that has been dynamically allocated ?
27
votes
1answer
492 views
glDrawArray() gives a memory exception
While looping through all objects I want to render in my 3D-engine, I get an error when trying to call
glDrawArrays(mesh->primitiveType, 0, mesh->vertexCount);
Because it tries to read from ...
26
votes
1answer
398 views
Python line-by-line memory profiler?
I'm looking to generate, from a large Python codebase, a summary of heap usage or memory allocations over the course of a function's run.
I'm familiar with heapy, and it's served me well for taking ...
26
votes
6answers
531 views
How-to ensure that compiler optimizations don't introduce a security risk?
I have to write a Windows service that handles at some point confidential data (such as PIN codes, passwords, and so on). Those informations are needed for a very short amount of time: usually they ...
25
votes
6answers
5k views
scala vs java, performance and memory?
I am keen to look into Scala, and have one basic question I cant seem to find an answer to:
in general, is there a difference in performance and usage of memory between Scala and Java?
25
votes
13answers
1k views
What is the fastest way to count the unique elements in a list of billion elements?
My problem is not usual. Let's imagine few billions of strings. Strings are usually less then 15 characters. In this list I need to find out the number of the unique elements.
First of all, what ...
25
votes
10answers
2k views
Concurrency: how does shared memory vs message passing handle large data structures?
In looking at Go and Erlang's approach to concurrency, I noticed that they both rely on message passing.
This approach obviously alleviates the need for complex locks because there is no shared ...
25
votes
1answer
14k views
How do I profile memory usage in Python?
I've recently become interested in algorithms and have begun exploring them by writing a naive implementation and then optimizing it in various ways.
I'm already familiar with the standard Python ...
25
votes
11answers
20k views
Size of a byte in memory - Java
I have heard mixed opinions over the amount of memory that a byte takes up in a java program.
I am aware you can store no more than +127 in a java byte, and the documentation says that a byte is only ...
24
votes
6answers
611 views
Why does java wait so long to run the garbage collector?
I am building a Java web app, using the Play! Framework. I'm hosting it on playapps.net. I have been puzzling for a while over the provided graphs of memory consumption. Here is a sample:
The ...
24
votes
2answers
10k views
Java: How to get the unique ID of an object which overrides hashCode()?
When a class in Java doesn't override hashCode(),
printing an instance of this class gives a nice unique number.
The Javadoc of Object says about hashCode():
As much as is reasonably practical, ...
24
votes
5answers
4k 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 ...
24
votes
24answers
8k views
is a great memory a requirement for great programming [closed]
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 ...
24
votes
11answers
105k views
Eclipse memory settings when getting “Java Heap Space” and “Out of Memory”
When trying to launch and run a flex/java project in eclipse I kept getting a "Out of Memory Exception" and "Java Heap Space" using Eclipse, Tomcat and a JRE.
While researching trying to adjust the ...
23
votes
3answers
454 views
Java security: how to clear/zero-out memory associated with an object? (And/or ensure that is the only instance/copy of a particular variable)
I'm in a discussion at work over how to secure sensitive information (e.g. passwords) stored in a Java program. Per security requirements, memory containing sensitive information is cleared, e.g. by ...
23
votes
16answers
1k views
Could I ever want to access the address zero?
The constant 0 is used as the null pointer in C and C++. But as in the question "Pointer to a specific fixed address" there seems to be some possible use of assigning fixed addresses. Is there ever ...
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 ...
23
votes
10answers
5k views
“register” keyword in C?
What does the register keyword do in C? I have read that it is used for optimizing but is not clearly defined in any standard. Is it still relevant and if so, when would you use it?
23
votes
6answers
34k views
how to find out which processes are swapping in linux?
Under Linux, how do I find out which process is using the swap space more?
Any scripts/links appreciated..
23
votes
7answers
5k views
What is the memory consumption of an object in Java?
Is the memory space consumed by one object with 100 attributes the same as that of 100 objects, with one attribute each?
How much memory is allocated for an object?
How much additional space is used ...
23
votes
10answers
7k views
Can you allocate a very large single chunk of memory ( > 4GB ) in c or c++?
With very large amounts of ram these days I was wondering, it is possible to allocate a single chunk of memory that is larger than 4GB? Or would I need to allocate a bunch of smaller chunks and handle ...
22
votes
5answers
14k views
ruby/ruby on rails memory leak detection
I wrote a small web app using ruby on rails, its main purpose is to upload, store, and display results from xml(files can be up to several MB) files. After running for about 2 months I noticed that ...
22
votes
6answers
23k views
C# - How do you get total amount of RAM the computer has?
I'm wanting to get the total amount of RAM my computer has using C#.
Using the PerformanceCounter I can get the amount of Available ram, by setting:
counter.CategoryName = "Memory";
...
21
votes
8answers
1k views
If free() knows the length of my array, why can't I ask for it in my own code?
I know that it's a common convention to pass the length of dynamically allocated arrays to functions that manipulate them:
void initializeAndFree(int* anArray, size_t length);
int main(){
size_t ...