Tagged Questions

6
votes
3answers
496 views

Turning off the D garbage collector

I'm a C++ programmer thats considering using D for a personal project I want to play around with. I was wondering if there's a way to completely disable the garbage collector, and …
2
votes
3answers
94 views

On switching out garbage collectors in Java

Recently I heard Kirk Pepperdine speak about changing garbage collectors for better performance -- but what exactly does that mean and what makes one garbage collector better or di …
2
votes
7answers
193 views

Can I detect when the Garbage collector works?

Am working on a swing app. I will experiance slowness after continuous half an hour of use. can it because of GC running? How can i find when the garbage collector runs through a …
1
vote
5answers
145 views

Why doesn’t Ada have a garbage collector?

I know GC wasn't popular in the days when Ada was developed and for the main use case of embedded programming it is still not a good choice. But considering that Ada is a general …
1
vote
6answers
132 views

Garbage Collector in Real-Time System

I'm new to C#/Java and plan to prototype it for soft real-time system. If I wrote C#/Java app just like how I do in C++ in terms of memory management, that is, I explicitly "delet …
1
vote
7answers
142 views

Is it necessary to free the memory in .Net as if in VB6?

I was reading about the Form's events in VB6 such as "Unload" "QueryUnload" and "Terminate", and about the "End" statement: http://articles.techrepublic.com.com/5100-10878%5F11-553 …
1
vote
7answers
297 views

How to use garbage collection to delete files ?

Hi I am using a lot of temporary files in java and my problem is that they do not get deleted. Without having to implement my own handling of temporary file management (not hard I …
0
votes
3answers
97 views

Java - a object created inside of a method is eligible for garbage collector after the method is finished?

I encounter this question in a interview. "a object created inside of a method is eligible for garbage collector after the method is finished? " I responded yes. It's correct?
0
votes
1answer
40 views

Efficient, Reliable Active Objects Count

Is there a mechanism for getting a reliable value for the number of active objects in a Ruby environment? I've found several approaches to produce an answer, and typically they res …