开发者

What is the Javascript method CollectGarbage()? When and why should it be used?

开发者 https://www.devze.com 2022-12-09 20:17 出处:网络
I notice in the VS2010 javascript intellisence there is a method called CollectGarbage(). Is this an IE only method?

I notice in the VS2010 javascript intellisence there is a method called CollectGarbage().

Is this an IE only method?

When sh开发者_开发技巧ould it be used?

What are the advantages (or disadvantages) to using it?


You might want to take a look at this post by Eric Lippert.

Is this an IE only method?

Nope. It's part of JScript, so anything that implements JScript (including IE, of course) should support it.

When should it be used?

When you want to hint garbage collector to start doing its job. Arguably, it shouldn't be used at all, and instead just let things happen on their own.

What are the advantages (or disadvantages) to using it?

I'm not aware of any disadvantages. Before using it, I would perform some tests to see if there are actual benefits in memory usage.


It's part of the Microsoft JScript library. The documentation for it is pretty poor. I'm not sure how it works, but I would assume that it looks through the members of an object for things that it can delete.

And, as bdukes mentioned, this should not be called in your code. Leave it to the inner workings of the JScript library.


How Do The Script Garbage Collectors Work? @ Eric Lippert's Blog

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号