1
vote
1answer
26 views
C# Marshal class available on Xbox?
does anyone know if the Marshal class is available on the xbox360, specifically the AllocHGlobal method.
Unfortunately I don't have access to an xbox right now, otherwise I would test it myself!
…
0
votes
3answers
64 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 …
1
vote
4answers
57 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 …
4
votes
6answers
136 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 …
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() …
6
votes
4answers
114 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 …
8
votes
15answers
567 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 …
2
votes
2answers
95 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
60 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
4
votes
2answers
95 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
5answers
205 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?
…
0
votes
1answer
29 views
Core data and custom NSCell
I am building a toy app using core data for two entities Log (attributes text and date) and Tag with a many-to-many tags relationship from Log to Tag.
I want to show logs in a table, so I:
created …
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 …
2
votes
1answer
21 views
iPhone memory management question: retaining iterated UITableViewCells?
I'm still shaky on the subtler aspects of memory management, and I have a question about the aggressive retaining/releasing I've seen in some sample code. Specifically:
- …
1
vote
5answers
162 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> …
