이 기사의 예에서는 JavaScript가 Java에서 StringBuffer를 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
Javascript StringBuffer 클래스의 구현은 프로토타입을 통해 StringBuffer 클래스를 구성하는 것이며, 코드는 다음과 같습니다.
function StringBuffer() { this.__strings__ = new Array(); } StringBuffer.prototype.append = function(str) { this.__strings__.push(str); }; StringBuffer.prototype.toString = function() { return this.__strings__.join(""); };
예:
<html> <head> <title>test</title> <script type="text/javascript"> function StringBuffer() { this.__strings__ = new Array(); } StringBuffer.prototype.append = function(str) { this.__strings__.push(str); }; StringBuffer.prototype.toString = function() { return this.__strings__.join(""); }; function testStringBuffer(){ var date1 = new Date(); var str; for( var i=0; i<10000; i++){ str += "text"; } var date2 = new Date(); document.writeln("Sting use time:"+ (date2 - date1) +"ms"); //StringBuffer var date3 = new Date(); var strBuffer = new StringBuffer(); for(i=0; i<10000; i++){ strBuffer.append("text"); } strBuffer.toString(); var date4 = new Date(); document.writeln("<br/>StringBuffer use time:"+ (date4 - date3) +"ms"); } </script> </head> <body> <input type="button" value="testStringBuffer" onclick="testStringBuffer()"/> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.