Max Lybbert
Posts: 314
Nickname: mlybbert
Registered: Apr, 2005
|
|
Re: Garbage Collection
|
Posted: Oct 17, 2005 1:28 PM
|
|
/*I was wondering why you do not want to use GC for Heron (I hope I'm right on that one). */
I'll hop in on this, because this was a recent topic.
First, as I understand it, Heron won't *prohibit* garbage collection. Just like C++ permits GC implementations, it will be possible for somebody to implement Heron with GC.
But the reference implementation won't come with GC. Instead, Heron will come with various pointer classes that offer different memory management behavior. These pointers will be useful for resources other than memory as well. Most garbage collection doesn't give you that option.
|
|