Memory Management

Reference Counting

English

Overview

A scheme that counts how many places reference an object and frees it once that count reaches zero.

Details

A memory-management scheme that tracks the number of references to an object and frees its memory the moment the count reaches zero. It's weak against circular references.

More Programming terms