复制内容到剪贴板 程序代码
function StringBuffer(){//自定义一个StringBuffer类。以便提高String的连接字符串性能
this._strings = new Array;
}
StringBuffer.prototype.append = function(str){
this._strings.push(str);
}
StringBuffer.prototype.toString = function(){
return this._strings.join("");//join()用参数里面的字符串连接Array里面的值
}
this._strings = new Array;
}
StringBuffer.prototype.append = function(str){
this._strings.push(str);
}
StringBuffer.prototype.toString = function(){
return this._strings.join("");//join()用参数里面的字符串连接Array里面的值
}
Tags: StringBuffer
StringBuffer类型的变量无法直接用equals("")进行判断,即便无值,判断语句也会认为有值。WHY?我也不知道。
i不过f(bufferElite.toString().equals(""))这样的语句就好使了
i不过f(bufferElite.toString().equals(""))这样的语句就好使了
Tags: StringBuffer