How the StringBuilder class is implemented? Does it internally create new string objects each time we append?
feedback
|
|
In .NET 2.0 it uses the In .NET 4.0 In 2.0
But in 4.0 it looks like this:
So evidently it was changed from using a EDIT: Updated answer to reflect changes in .NET 4 (that I only just discovered). | |||||||||||||
feedback
|
|
Not really - it uses internal character buffer. Only when buffer capacity gets exhausted, it will allocate new buffer. Append operation will simply add to this buffer, string object will be created when ToString() method is called on it - henceforth, its advisable for many string concatenations as each traditional string concat op would create new string. You can also specify initial capacity to string builder if you have rough idea about it to avoid multiple allocations. Edit: People are pointing out that my understanding is wrong. Please ignore the answer (I rather not delete it - it will stand as a proof of my ignorance :-) | |||||||||||||||
feedback
|
|
If I look at .NET Reflector at .NET 2 then I will find this:
So it is a mutated string instance... EDIT Except in .NET 4 it is a | ||||
|
feedback
|
|
If you want to see one of the possible implementations (That is similar to the one shipped wit the microsoft implementation up to v3.5) you could see the source of the Mono one on github. | |||
|
feedback
|
|
I have made a small sample to demonstrate how StringBuilder works in .NET 4. The contract is
And this is a very basic implementation
This code is not thread-safe, doesn't make any input validation and is not using the internal (unsafe) magic of System.String. It does however demonstrates the idea behind StringBuilder class. Some unit-tests and full sample code can be found at github. | |||
|
feedback
|
|
The accepted answer misses the mark by a mile. The significant change to The reason for this change should be obvious: now there is never a need to reallocate the buffer (an expensive operation, since, along with allocating more memory, you also have to copy all the contents from the old buffer to the new one). This means calling You can find benchmarks here. The conclusion? The new linked-list | |||
|
feedback
|