欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

IE6内存泄露的另类解决方法

程序员文章站 2022-06-22 21:18:04
IE6内存泄露的另类解决方法...

hedger wang 在国内 blog 上得到的方法:使用 try … finally 结构来使对象最终为 null ,以阻止内存泄露。
其中举了个例子:
function createbutton() {
var obj = document.createelement("button");
obj.innerhtml = "click me";
obj.onclick = function() {
//handle onclick
}
obj.onmouseover = function() {
//handle onmouseover
}
return obj;//return a object which has memory leak problem in ie6
}
var dbutton = document.getelementbyid("d1").appendchild(createbutton());
//skipped....
对于 ie6 中,引起内存泄露的原因,可看《understanding and solving internet explorer leak patterns》一文。
上面的例子,应该属于上文中的 “closures”原因。
IE6内存泄露的另类解决方法
再看下用 try … finally 的解决方法:
/**
* use the try ... finally statement to resolve the memory leak issue
*/
function createbutton() {
var obj = document.createelement("button");
obj.innerhtml = "click me";
obj.onclick = function() {
//handle onclick
}
obj.onmouseover = function() {
//handle onmouseover
}
//this helps to fix the memory leak issue
try {
return obj;
} finally {
obj = null;
}
}
var dbutton = document.getelementbyid("d1").appendchild(createbutton());
//skipped....
可能大家有疑问: finally 是如何解析的呢?
答案是:先执行 try 语句再执行 finally 语句。
例如:
function foo() {
var x = 0;
try {
return print("call return " ( x));
} finally {
print("call finally " ( x));
}
}
print('before');
print(foo());
print('after');
返回的结果为:
print » before
print » call return 1
print » call finally 2
print » true
print » after
更多详细的演示:
《finally, the alternative fix for ie6’s memory leak is available》
相关的一些讨论:
《is “finally” the answer to all ie6 memory leak issues?》