does javascript use immutable or mutable strings?
feedback
|
|
from the rhino book: In JavaScript, strings are immutable objects, which means that the characters within them may not be changed and that any operations on strings actually create new strings. Strings are assigned by reference, not by value. In general, when an object is assigned by reference, a change made to the object through one reference will be visible through all other references to the object. Because strings cannot be changed, however, you can have multiple references to a string object and not worry that the string value will change without your knowing it | |||||||
feedback
|
|
They are immutable. However, I've always heard what Ash mentioned in his answer( that using Array.join is faster for concatenation) so I wanted to test out the different methods of concatenating strings and abstracting the fastest way into a StringBuilder. I wrote some tests to see if this is true. This was what I believed would be the fastest way, though I kept thinking that adding a method call may make it slower...
So I decided to test them out... Here are some speed tests. All three of them create a gigantic string made up of concatenating "Hello diggity dog" one million times into an empty string. I tried each about five times and took some averages
Then I wrapped each style in a StringBuilder abstraction
Firefox 3.6.13
Chrome 8.0.552.237
IE 8.0.7600.16385
Findings
Hope somebody else finds this useful Homework My StringBuilder abstractions use | ||||
feedback
|
|
Performance tip: No StringBuilder in javascript. | |||||||||||||
feedback
|
|
JavaScript strings are indeed immutable. | |||||
feedback
|
|
Regarding your question (in your comment to Ash's response) about the StringBuilder in ASP.NET Ajax the experts seem to disagree on this one. Christian Wenz says in his book Programming ASP.NET AJAX (O'Reilly) that "this approach does not have any measurable effect on memory (in fact, the implementation seems to be a tick slower than the standard approach)." On the other hand Gallo et al say in their book ASP.NET AJAX in Action (Manning) that "When the number of strings to concatenate is larger, the string builder becomes an essential object to avoid huge performance drops." I guess you'd need to do your own benchmarking and results might differ between browsers, too. However, even if it doesn't improve performance it might still be considered "useful" for programmers who are used to coding with StringBuilders in languages like C# or Java. | |||
|
feedback
|