摘要: /** * js实现StringBuffer 性能有提升 */ function StringBuffer() { this._strings_ = new Array; if(arguments.length==1) { this._strings_.push(arguments[0]); } } 阅读全文
posted @ 2020-03-19 13:30 自己的太阳 阅读(247) 评论(0) 推荐(0) 编辑