Why does StringBuilder have a default capacity of 16 characters? Is this some kind of optimization?

StringBuilder builder = new StringBuilder();
Console.WriteLine("builder capacity: '{0}'", builder.Capacity);

output:

builder capacity: '16'
link|improve this question

See this related question: stackoverflow.com/q/246211/25727 – Jan Dec 15 '11 at 14:03
2  
Does it matter? I'm willing to bet someone just chose a reasonable number. – Bernard Dec 15 '11 at 14:03
1  
The main part of my question is WHY? – Darius Kucinskas Dec 15 '11 at 14:05
1  
@DariusKucinskas you mean WHY? – Ray Dec 15 '11 at 14:08
4  
Close as exact duplicate is incorrect in this case. Although I'd be tempted to close as not a real question (although it is, but it doesn't really have a satisfying answer... ;-) – Adam Houldsworth Dec 15 '11 at 14:13
show 3 more comments
feedback

1 Answer

up vote 4 down vote accepted

Implementation-specific default values are used if no capacity or maximum capacity is specified when an instance of StringBuilder is initialized.

Straight from the MSDN docs.

They can't really optimise anything as it depends entirely on usage, hence they let you specify a capacity in the constructor, so you can optimise it yourself. They put something in if you don't specify anything purely on the fairly-safe guess that you want some capacity even if you don't specify any.

The same goes for lists. They don't know how many items you want or how many items on average a list contains in your app. They expose capacity so you can force the list size to something that would prevent it from having to grow too often. The StringBuilder is no different in this case.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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