|
|
|
|
|
by rtaycher
5529 days ago
|
|
reference counting is slower* then other forms of gc.
My guess why its fairly fast in c++ has a lot to do whith how much you can avoid it by allocating things on the stack(of course you can do escape anaylsis but most gc'd languages don't have explicit stack allocation of non basic types) *with a lot of collaries |
|