Posted in Javascript onAugust 16, 2010
function StringBuffer(){ this.__strings__ = new Array(); } StringBuffer.prototype.append = function(str){ this.__strings__.push(str); }; StringBuffer.prototype.toString = function(){ this.__strings__.join(" "); };
其实上面的代码,主要利用了js的数组原理实现。
javascript下高性能字符串连接StringBuffer类
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@