Y
Hacker News
new
|
ask
|
show
|
jobs
by
blackhole
5183 days ago
Meanwhile, people still manage to write memory leaks in garbage collected languages specifically designed to not leak memory.
1 comments
Retric
5183 days ago
GC is not about preventing memory leaks, it's there to make managing memory easier not automatic. One of it's biggest advantages is the ability to deal with memory fragmentation which is ridiculously hard to do well in C++ style languages.
link