1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00
qb64/internal/help/_MEMFREE.txt
2021-02-28 11:47:33 -03:00

28 lines
872 B
Plaintext

{{DISPLAYTITLE:_MEMFREE}}
The [[_MEMFREE]] statement frees the designated memory block [[_MEM]] value and must be used with all memory functions.
{{PageSyntax}}
: [[_MEMFREE]] {{Parameter|memoryVariable}}
{{PageParameters}}
* ALL designated [[_MEM]] type {{Parameter|memoryVariable}} values must be freed to conserve memory when they are no longer used or needed.
{{PageDescription}}
* Since [[_MEM]] type variables cannot use a suffix, use [[DIM]] {{Parameter|memoryVariable}} [[AS]] [[_MEM]] to create memory handle variables.
* All values created by memory functions must be freed using [[_MEMFREE]] with a valid [[_MEM]] variable.
{{PageSeeAlso}}
* [[_MEM]] {{text|(variable type)}}
* [[_MEM (function)]]
* [[_MEMNEW]] {{text|(function)}}
* [[_MEMIMAGE]] {{text|(function)}}
* [[_MEMELEMENT]] {{text|(function)}}
* [[_MEMGET (function)]]
{{PageNavigation}}