previous | index

Garbage Collection

The delete operator does not return a value, and is called only for side effect.

Good programmers make sure that all memory allocated with new is eventually returned with delete.

They implement manually the garbage collection performed automatically by languages such as Scheme and Java.


previous | index