Published in: ActionScript 3
//delete will not delete the content,but the variable container,so the content will still survives in memory until all reference are removed and it is collected by the garbage collect. var foo = bar = new Object(); delete(foo); trace(bar);//Object object
You need to login to post a comment.
