Tagged Questions

0
votes
3answers
40 views

Why does the OutOfMemoryException get thrown?

What reasons cause the .NET runtime to throw an OutOfMemoryException? The garbage collector's job is to clean up memory and free memory as necessary before allocating objects; why would it appear to …
8
votes
15answers
540 views

What do I need to know about memory in C++?

I've been doing my best to learn C++ but my previous training will fall short in one major issue: memory management. My primary languages all have automatic garbage collection, so keeping track of …
4
votes
6answers
132 views

How could pairing new[] with delete possibly lead to memory leak only?

First of all, using delete for anything allocated with new[] is undefined behaviour according to C++ standard. In Visual C++ 7 such pairing can lead to one of the two consequences. If the type …
1
vote
4answers
47 views

Local object scope and memory management in Cocoa

I'm new to Objective-C and Cocoa programming, so in my first sample projects I've always adopted the statement of releasing/autoreleasing all my allocated and copied objects. But what about local …
5
votes
4answers
87 views

Are spinlocks a good choice for a memory allocator?

I've suggested to the maintainers of the D programming language runtime a few times that the memory allocator/garbage collector should use spinlocks instead of regular OS critical sections. This …
0
votes
4answers
59 views

If I have a variable locally declared in a loop that creats a thread, is it safe to use that variable in the called thread, even after the next iteration of the loop takes place?

I have a question about variable scope and memory management in C. I am writing a program that listens for a socket connection and then launches a new thread to handle that client. The main while() …
2
votes
2answers
90 views

Why array values in java is stored in heap?

Programing languages like C,C++ will not store array values in Heap rather it keeps the value in STACK. But in Java why there is a necessity to keep array values in heap?
1
vote
2answers
59 views

Is memory management a concern with asp.net mvc

Hai guys, I want to know,is memory management a concern with asp.net mvc.. comparision of memeory management in both asp.net mvc and web forms by experts
0
votes
5answers
192 views

structure on a heap memory

This question was recently asked to me in an interview for which i went confused!! "How do you initialize a structure in the heap memory ?" could anybody please tell me the correct answer for this? …
4
votes
2answers
90 views

Whats the work of JDK and JRE?

Hi, I have a confusion that what JRE is doin on the Background and what does the JDK doing.
0
votes
3answers
73 views

Unit testing C library, memory management.

I am working on a quite large C library that doesn't have any tests now. As the API starts to be final, I'd like to start writing unit tests. Nearly all my functions acts on the first parameter (a …
3
votes
13answers
392 views

When are variables removed from memory in C++?

I've been using C++ for a bit now. I'm just never sure how the memory management works, so here it goes: I'm first of all unsure how memory is unallocated in a function, ex: int addTwo(int num) { …
2
votes
4answers
106 views

How important is it to check return values when using the Python C API?

It seems that everytime I call a function that returns a PyObject*, I have to add four lines of error checking. Example: py_fullname = PyObject_CallMethod(os, "path.join", "ss", folder, filename); if …
0
votes
5answers
160 views

Avoid making copies with vectors of vectors

I want to be able to have a vector of vectors of some type such as: vector<vector<MyStruct> > vecOfVec; I then create a vector of MyStruct, and populate it. vector<MyStruct> …
2
votes
3answers
137 views

c++ fread jibberish

For some reason my buffer is getting filled with jibberish, and I'm not sure why. I even checked my file with a hex editor to verify that my characters are saved in a 2 byte unicode format. I'm not …

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