vote up 3 vote down star

What is the default capacity of a StringBuilder?

And when should (or shouldn't) the default be used?

flag

5 Answers

vote up 4 vote down check

The Venerable J. Skeet has provided a good analysis of precisely this problem:

http://www.yoda.arachsys.com/csharp/stringbuilder.html

link|flag
That's a good reminder that I should edit the article to include the word "capacity" somewhere :) – Jon Skeet Oct 29 '08 at 10:38
vote up 5 vote down

The default capacity of StringBuilder is 16 characters (I used .NET Reflector to find out).

link|flag
vote up 1 vote down

Default is 16, which seems to be the default capacity of any type of array or list in the .NET framework. The less number of reallocations you need on your StringBuilder, the better it is. Meanwhile, it is unnecessary to allocate much more than is needed, too.

I usually instantiate the StringBuilder with some type of rough estimate as to the final size of the StringBuilder. For instance, this could be based on some iteration count that you will use later on to build the string, times the size needed for each item in this iteration.

// where 96 is a rough estimate of the size needed for each item
StringBuilder sb = new StringBuilder ( count * 96 );
for ( int i = 0; i < count; i++ )
{
...
}

When the size of a StringBuilder is too small for writing the next string, the internal char array of StringBuilder is reallocated to twice its current size.

link|flag
vote up 0 vote down

read hear about Stringbuilder capacity , there is sample app to prove it too.

link|flag
That linked article refers to maximum capacity. Not the default capacity (16). – Matt Lacey Oct 29 '08 at 9:44
vote up 0 vote down

[edit: at the time, the question asked about StringList]

Do you mean StringCollection? This uses an empty ArrayList initially, so the answer is 0. And you have no option to change it. When you first add an item, the capacity jumps to 4, then uses a doubling strategy when it fills.

If you mean List<string>, then it is similar (an empty T[], not an ArrayList), but you can initialize a known size if you need (i.e. you know how much data you expect). Again, the first time you Add to a List<T> the size jumps to 4, then doubles every time it fills up.

link|flag
I think he did mean StringBuilder, nothing else. – boris callens Oct 29 '08 at 9:38
sorry for the confusion – Matt Lacey Oct 29 '08 at 9:42
1  
Ah; so a good answer to a different question... oh well ;-( – Marc Gravell Oct 29 '08 at 10:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.