摘要: function StringBuffer(str){ var arr = []; str = str || ""; arr.push(str); this.append = function(str1) { arr.push(str1); return this; }; this.toString 阅读全文
posted @ 2017-10-17 11:28 Debugs 阅读(2061) 评论(0) 推荐(0)