码迷,mamicode.com
首页 > Web开发 > 详细

js的prototype扩展的一个例子,模仿C#的StringBuilder功能,数组组合字符串,效率大于+拼凑

时间:2014-07-07 00:46:42      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:os   cti   io   new   type   app   

function StringBuilder() {
this._strings_ = new Array;
}
StringBuilder.prototype.append = function (str) {
this._strings_.push(str);
};
StringBuilder.prototype.toString = function () {
return this._strings_.join("");
};

js的prototype扩展的一个例子,模仿C#的StringBuilder功能,数组组合字符串,效率大于+拼凑,布布扣,bubuko.com

js的prototype扩展的一个例子,模仿C#的StringBuilder功能,数组组合字符串,效率大于+拼凑

标签:os   cti   io   new   type   app   

原文地址:http://www.cnblogs.com/netsql/p/3822316.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!