refcounts Definition
Definition
In computer programming, specifically in memory management, refcount is a reference count, an integral measure of the number of references to an object. It is used by garbage collection and reference counting algorithms to determine whether an object can be safely deallocated.
Browse