JavaScript 는 StringBuffer 클래스 를 이용 하여+=문자열 연결 효율 을 향상 시 킵 니 다.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
</body>
<script type="text/javascript"><!--
var str = 'hello';
str += 'world';
// 2 6
// , :
/**//*
1. 'hello'
2. 'world'
3.
4. str
5. 'world'
6. str,
*/

//
// StringBuffer
function StringBuffer(){
this.__strings__ = [];
};
StringBuffer.prototype.append = function(str){
this.__strings__.push(str);
};
StringBuffer.prototype.toString = function(){
return this.__strings__.join('');
};

// StringBuffer ,
// 2
// , :
/**//*
1.
2.
*/
var buffer = new StringBuffer();
buffer.append('hello ');
buffer.append('world');
var result = buffer.toString();

// StringBuffer += 50%~66%
//-->
</script>
</html>

좋은 웹페이지 즐겨찾기