I noticed that the capacity method returns StringBuilder capacity without a logic
way ... sometime its value is equals to the string length other time it's greater...
is there an equation for know which is its logic?
|
I noticed that the is there an equation for know which is its logic? |
|||
|
When you append to the
where
The
|
|||
|
|
This function does something different than you expect - it gives you the max number of chars this StringBuilder instance memory can hold at this time. |
|||
|
|
|
From the API:
Whenever you append something, there is a check to make sure that the updated StringBuilder won't exceed its capacity, and if it does, the internal storage of the StringBuilder is resized:
When data is added to it that exceeds its capacity it is re-sized according to the following formula:
See the |
|||||||||
|
|
EDIT: Apologies - the below is information on .NET's StringBuilder, and is not strictly relevant to the original question. http://johnnycoder.com/blog/2009/01/05/stringbuilder-required-capacity-algorithm/ StringBuilder allocates space for substrings you might add to it (much like List creates space the array it wraps). If you want the actual length of the string, use StringBuilder.Length. |
|||||||||
|
capacity? It automatically grows to accomodate whatever is necessary. You can play with it to improve performance, but it's still asymptotically linear. – polygenelubricants Jul 6 '10 at 9:26