Reply to Jarrett,
On Wed, Nov 26, 2008 at 11:23 PM, ViktorKrescvohn
<[EMAIL PROTECTED]> wrote:
what about normal arrays, and thank you very much
Everything you allocate is garbage-collected. Arrays, AAs, classes -
_everything_.
unless you break out malloc, but you basicly never need to.
On Wed, Nov 26, 2008 at 11:23 PM, ViktorKrescvohn <[EMAIL PROTECTED]> wrote:
> what about normal arrays, and thank you very much
Everything you allocate is garbage-collected. Arrays, AAs, classes -
_everything_.
BCS Wrote:
> Reply to ViktorKrescvohn,
>
> > i have a function that re-use same associative array over and over
> > within a loop. and i release the array with 'null' afther each loop,
> > will that be a problem of meamory leak after few thousands loop.
> > sample function as below:
> >
> > void
Reply to ViktorKrescvohn,
i have a function that re-use same associative array over and over
within a loop. and i release the array with 'null' afther each loop,
will that be a problem of meamory leak after few thousands loop.
sample function as below:
void[] [char[]] dict;
void[] [char[]] temp
i have a function that re-use same associative array over and over within a
loop. and i release the array with 'null' afther each loop, will that be a
problem of meamory leak after few thousands loop. sample function as below:
void[] [char[]] dict;
void[] [char[]] temp;
function test()
{
for