专注于互联网--专注于架构

最新标签
网站地图
文章索引
Rss订阅
JavsScript 实现 StringBuilder 类, 增强字符串连接的性能. function StringBuilder() { this.__strings__ = new Array(); } StringBuilder.prototype.append = function (_string) { this.__strings__.push(_string); } StringBuilder.prototype.toString = function() { return this.__strings__.jo [阅读全文] [PDF]
1 共1条 分1页