luocheng
2014-11-08 11:30:15
js面向对象定义StringBulider对象
StringBulider = function(value){ this.Strings = new Array(); if(value!=null&&value.length>0){ this.append(value) } } StringBulider.prototype.append = function(value){ if(value!=null&&value.length>0){ this.Strings.push(value); } return this; } StringBulider.prototype.toString = function(seperator){ return this.Strings.join(seperator||""); } StringBulider.prototype.clear = function(){ return this.Strings.length=0; } StringBulider.prototype.length = function(){ return this.Strings.length; } /** * 移除最后一个 */ StringBulider.prototype.lastRemove = function(){ this.Strings=this.Strings.slice(0, this.Strings.length-1); return this; }
猜你喜欢
请下载代码后再发表评论
相关代码
最近下载
最近浏览
3334004690 LV10
3月6日
2602275348 LV12
1月12日
成熟的小孩 LV2
1月11日
养生今天不睡 LV2
2020年5月7日
luohaipeng LV23
2019年12月3日
缆车999 LV1
2019年7月9日
在雨中笑着哭 LV2
2019年4月2日
yangbinghua LV6
2019年2月1日
574881127 LV1
2018年12月2日
WSKJNQ
2017年12月7日
暂无贡献等级