summaryrefslogtreecommitdiffstats
path: root/doc/classes/RefCounted.xml
diff options
context:
space:
mode:
authorHaoyu Qiu <timothyqiu32@gmail.com>2023-10-07 11:57:49 +0800
committerHaoyu Qiu <timothyqiu32@gmail.com>2023-11-11 10:07:48 +0800
commitb2dcef492841214641735e506d52427bead776bd (patch)
treee360f176db11059f2e04c42f01f73801d4e45c67 /doc/classes/RefCounted.xml
parente38686f85b768a451dc06324fe2471adc8665448 (diff)
downloadredot-engine-b2dcef492841214641735e506d52427bead776bd.tar.gz
Explain circular references and how to break them
Also improves the documentation of `weakref`.
Diffstat (limited to 'doc/classes/RefCounted.xml')
-rw-r--r--doc/classes/RefCounted.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/RefCounted.xml b/doc/classes/RefCounted.xml
index fe10f84449..3ef87e462d 100644
--- a/doc/classes/RefCounted.xml
+++ b/doc/classes/RefCounted.xml
@@ -6,6 +6,7 @@
<description>
Base class for any object that keeps a reference count. [Resource] and many other helper objects inherit this class.
Unlike other [Object] types, [RefCounted]s keep an internal reference counter so that they are automatically released when no longer in use, and only then. [RefCounted]s therefore do not need to be freed manually with [method Object.free].
+ [RefCounted] instances caught in a cyclic reference will [b]not[/b] be freed automatically. For example, if a node holds a reference to instance [code]A[/code], which directly or indirectly holds a reference back to [code]A[/code], [code]A[/code]'s reference count will be 2. Destruction of the node will leave [code]A[/code] dangling with a reference count of 1, and there will be a memory leak. To prevent this, one of the references in the cycle can be made weak with [method @GlobalScope.weakref].
In the vast majority of use cases, instantiating and using [RefCounted]-derived types is all you need to do. The methods provided in this class are only for advanced users, and can cause issues if misused.
[b]Note:[/b] In C#, reference-counted objects will not be freed instantly after they are no longer in use. Instead, garbage collection will run periodically and will free reference-counted objects that are no longer in use. This means that unused ones will linger on for a while before being removed.
</description>