在dhtmlXTreeObject的源代码中,我看有些对象的构造函数最后总是return this,这个是不是多余啊,代码如下
function dtmlXMLLoaderObject(funcObject, dhtmlObject,async,rSeed){
this.xmlDoc="";

if (typeof(async) != "undefined")
this.async = async;
else this.async = true; this.onloadAction=funcObject||null;
this.mainObject=dhtmlObject||null;
    this.waitCall=null;
this.rSeed=rSeed||false;
return this;
};