associative array re-use

ViktorKrescvohn viktor_kv7 at bhecn.net
Wed Nov 26 18:31:21 PST 2008


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 (..) {
    for (...) {
       temp[name]=value;
    }
    dict~=temp;
    temp=null;
  }
  ..do something with dict...
}

thank you for you help


More information about the Digitalmars-d-learn mailing list