使用StringBuffer类比使用加号节省50%左右的时间,大家对于大数据的连接最好使用这个方法。
function StringBuffer(){
this.__strings__ = new Array();
}
StringBuffer.prototype.append = function(str){
this.__strings__.push(str);
};
StringBuffer.prototype.toString = function(){
this.__strings__.join(" ");
};
其实上面的代码,主要利用了的数组原理实现。