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 …
26
votes
15answers
2k views
Memory Leak in C#
Is it ever possible in a managed system to leak memory when you make sure that all handles, things that implement IDispose are disposed?
Would there be cases where some variables are left out?
22
votes
2answers
324 views
.NET Garbage Collector mystery
In my job we had a problem with OutOfMemoryExpections. I've written simple piece of code to mimic some behavior, and I've ended up with the following mystery. Look at this simple code which blows up …
21
votes
4answers
510 views
How do you prevent IDisposable from spreading to all your classes?
Start with these simple classes...
Let's say I have a simple set of classes like this:
class Bus
{
Driver busDriver = new Driver();
}
class Driver
{
Shoe[] shoes = { new Shoe(), new Shoe() …
17
votes
9answers
684 views
How to get a CS paper published when not in academia?
I've implemented a newer GC algorithm and thought my findings could help.
What should I do? Publish a blog? Do my best to write a paper and/or just start submitting abstracts to journals? I don't …
17
votes
9answers
801 views
Garbage collectors for C++
What free and commercial garbage collection libraries are available for C++, and what are the pros and cons of each?
I am interested in hard-won lessons from actual use in the field, not marketing or …
16
votes
6answers
2k views
Why doesn’t C++ have a garbage collector?
I'm not asking this question because of the merits of garbage collection first of all. My main reason for asking this is that I do know that Bjarne Stroustrup has said that C++ will have a garbage …
16
votes
14answers
2k views
What’s so wrong about using GC.Collect()?
Although I do understand the serious implications of playing with this function (or at least that's what I think), I fail to see why it's becoming one of these things that respectable programmers …
16
votes
4answers
1k views
Practical use of System.WeakReference
I understand what System.WeakReference does, but what I can't seem to grasp is a practical example of what it might be useful for. The class itself seems to me to be, well, a hack. It seems to me …
15
votes
14answers
1k views
Garbage Collection in C++ — why?
I keep hearing people complaining that C++ doesn't have garbage collection. I also hear that the C++ Standards Committee is looking at adding it to the language. I'm afraid I just don't see the point …
15
votes
7answers
1k views
Which loop has better performance? Why?
String s = "";
for(i=0;i<....){
s = some Assignment;
}
or
for(i=0;i<..){
String s = some Assignment;
}
I don't need to use 's' outside the loop ever again.
The first option is …
14
votes
15answers
1k views
Does it help GC to null local variables in Java
I was 'forced' to add myLocalVar = null; statement into finally clause just before leaving method. Reason is to help GC. I was told I will get SMS's during night when server crashes next time, so I …
13
votes
2answers
2k views
Is it necessary to explicitly remove event handlers in C#
I have a class that offers up a few events. That class is declared globally but not instanced upon that global declaration--it's instanced on an as-needed basis in the methods that need it.
Each …
12
votes
5answers
740 views
Trying to track down a memory leak / garbage-collection problem in Java.
This is a problem I have been trying to track down for a couple months now. I have a java app running in that processes xml feeds and stores the result in a database. This has been giving intermittent …
12
votes
9answers
651 views
Java performance with very large amounts of RAM
I'm exploring the possibility of running a Java app on a machine with very large amounts of RAM (anywhere from 300GB to 15TB, probably on an SGI Altix 4700 machine), and I'm curious as to how Java's …
