09.06.2005, 09:08 | #1 |
Участник
|
Как правильно удалить динамический массив контейнеров ?!
Как правильно удалить динамический массив контейнеров ?!
Удаляю так, но засомневался … Надо ли вообще убирать за собой?! Int k; … …. …. k=1; while( k ) { if ( McSum[k] ) { McSum[k] = connull( ); k++;} else k = 0 ; } |
|
09.06.2005, 10:50 | #2 |
Дмитрий Ерин
|
Re: Как правильно удалить динамический массив контейнеров ?!
Цитата:
Изначально опубликовано woland666
Надо ли вообще убирать за собой?! Developer's Guide: Цитата:
De-allocation of objects
Since objects need to be allocated, they also need to be de-allocated to preserve memory. In other languages this has to be done explicitly, but in X++ it is done automatically. MorphX monitors the use of objects (the number of references to an allocated memory chunk), and when no objects reference a chunk of memory, the memory is released. This mechanism is known as garbage-collection. |
|
09.06.2005, 12:44 | #3 |
Участник
|
СПАСИБО!
|
|