Monday, November 14, 2011

Garbage Collection

1. reference counting
2. Mark and sweep: starting at root objects ( objects on the stack, global object etc), mark them live, and recursively marking any object referenced from them.

No comments:

Post a Comment