GarbageCollect (Object subroutine): Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Template:Object:GarbageCollect subtitle}}
{{Template:Object:GarbageCollect subtitle}}


This page is [[under construction]].
==Syntax==
==Syntax==
{{Template:Object:GarbageCollect syntax}}
{{Template:Object:GarbageCollect syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th nowrap="true"><var>%(Object)</var></th>
<tr><th nowrap="true"><var>%(Object)</var></th>
<td>The class name in parentheses denotes a shared method. <var>GarbageCollect</var> can also be invoked via a <var>Object</var> object variable, which may be <var>Null</var>.</td></tr>
<td>The class name in parentheses denotes a [[Notation conventions for methods#Shared methods|shared method]]. <var>GarbageCollect</var> can also be invoked via an <var>Object</var> class object variable, which may be <var>Null</var>.</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
==Examples==
For more information about garbage collection, see [[Global and session objects#Managing object storage|Managing object storage]].
 
==See also==
==See also==
{{Template:Object:GarbageCollect footer}}
{{Template:Object:GarbageCollect footer}}

Latest revision as of 21:57, 8 August 2014

Clean up unreachable objects (Object class)


Syntax

%(Object):GarbageCollect

Syntax terms

%(Object) The class name in parentheses denotes a shared method. GarbageCollect can also be invoked via an Object class object variable, which may be Null.

Usage notes

For more information about garbage collection, see Managing object storage.

See also