Up: Temporaries   [Index]


4.2.4.1 Delayed Disposal

Resources blocked by temporaries are to released, but not before time. And time is as soon as their binding expression completes evaluation.

The temporaries disposal is called often by the application, and the latter should not call it too early.

For step by step execution, the interpreter will revert to the application when expression complete evaluation, and for other conditions, including function calls and outside intepreter control execution.

See Procedural Temporaries.

See Step By Step Imperative Program Execution.

See Step By Step Procedural Program Execution.