博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javascript中构造StringBuffer实例
阅读量:5155 次
发布时间:2019-06-13

本文共 774 字,大约阅读时间需要 2 分钟。

function StringBuffer(){  

    this.strings = new Array;  
}  
 
StringBuffer.prototype.append=function(str){  
    this.strings.push(str); //追加指定元素  
};  
 
StringBuffer.prototype.toString = function(){  
    return this.strings.join(""); //向数组之间的元素插入指定字符串(此处为空字符串),并返回。  
};  
StringBuffer.prototype.append=function(str){  
    this.strings.push(str); //追加指定元素  
};

之后可以使用StringBuffer:

var strBuffer = new StringBuffer();

        strBuffer.append("{\"gshts\":\'{");
        $.each(vos.gshts,function(index,gsht2){
            //JSON.stringify(gsht);
            if(parseInt(index) != parseInt(0)){
                //alert(index);
                strBuffer.append(',');
            }
            strBuffer.append( "\"gsht\":" + JSON.stringify(gsht2) + "");
        });
        strBuffer.append("}\'}");

posted on
2014-03-16 11:20 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/lvzhanhui/p/xiaoqiaolv_javascript_stringbuffer.html

你可能感兴趣的文章
网页编程技术三(H5中表格的用法)
查看>>
UITextView自定义placeholder功能:用一个label写了文字,然后当检测到长度不为0的时候就把label隐藏...
查看>>
MongoDB 插入、更新、删除
查看>>
arc()
查看>>
【leetcode】Majority Element
查看>>
数组的方法之(Array.prototype.reduce() 方法)
查看>>
itchat库微信自动回复祝福语
查看>>
移动端浏览器touch事件的研究总结
查看>>
pandas—总结(2) 数据读写 (更新中)
查看>>
POJ 2096 Collecting Bugs:期望dp
查看>>
绩效成绩
查看>>
JavaScript多继承(转载)
查看>>
需求分析之用例图
查看>>
DIOCP 运作核心探密
查看>>
You are not late! You are not early!
查看>>
基于Flask框架的Python web程序的开发实战 <二> 项目组织结构
查看>>
Linux grep及正则表达式
查看>>
P2023 [AHOI2009]维护序列
查看>>
HDU2216:Game III(BFS)
查看>>
JQuery语法 JQuery对象与原生对象互转 文档就绪函数与window.onload的区别
查看>>