Linked by Thom Holwerda on Tue 12th Dec 2006 18:18 UTC, submitted by BlueVoodoo

Thread beginning with comment 191311
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
Actually, you can still have memory leaks even in languages that garbage collect or do reference counting. It's not hard to add an object to some collection and then forget about. The collection just grows and grows until you run out of memory. Granted, it's easier to find what is growing, because you can tell the JVM to dump it's heap into a file for inspection.
Also, languages that do GC have the downside of actually cleaning up their memory space when they start running out of space, which causes pauses and general slowness. And nobody likes that.
RE[2]: Use good tools
by Earl Colby pottinger on Wed 13th Dec 2006 06:16
in reply to "RE: Use good tools"
Member since:
2005-11-10
How about programming in a language that automates memory (de)allocation? There, no more memory leaks.