时间:2021-07-01 10:21:17 帮助过:28人阅读
function StringBuffer(){
this.__strings__ = new Array();
}
StringBuffer.prototype.append = function(str){
this.__strings__.push(str);
};
StringBuffer.prototype.toString = function(){
this.__strings__.join(" ");
};
其实上面的代码,主要利用了js的数组原理实现。