Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Why do you care about the 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

4 Answers

When you append to the StringBuilder, the following logic happens:

if (newCount > value.length) {
    expandCapacity(newCount);
}

where newCount is the number of characters needed, and value.length is the current size of the buffer.

expandCapacity simply increases the size of the backing char[]

The ensureCapacity() method is the public way to call expandCapacity(), and its docs say:

Ensures that the capacity is at least equal to the specified minimum. If the current capacity is less than the argument, then a new internal array is allocated with greater capacity. The new capacity is the larger of:

  • The minimumCapacity argument.
  • Twice the old capacity, plus 2.

If the minimumCapacity argument is nonpositive, this method takes no action and simply returns.

share|improve this answer
yes but if I have: StringBuilder str = new StringBuilder(); // capacity 16 str.append("1111111111111111111"); capacity 32 length 19 According to the equation why capacity is not 16 * 2 + 2 = 34?? – xdevel2000 Jul 6 '10 at 7:51

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.

String Builder must read

share|improve this answer

From the API:

Every string builder has a capacity. As long as the length of the character sequence contained in the string builder does not exceed the capacity, it is not necessary to allocate a new internal buffer. If the internal buffer overflows, it is automatically made larger.

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:

int len = str.length();
int newCount = count + len;
if (newCount > value.length)
  expandCapacity(newCount);

When data is added to it that exceeds its capacity it is re-sized according to the following formula:

void expandCapacity(int minimumCapacity) {
int newCapacity = (value.length + 1) * 2;
    if (newCapacity < 0) {
        newCapacity = Integer.MAX_VALUE;
    } else if (minimumCapacity > newCapacity) {
    newCapacity = minimumCapacity;
}
    value = Arrays.copyOf(value, newCapacity);
}

See the src.zip file that comes with the JDK for more information. (Above snippets taken from the 1.6 JDK)

share|improve this answer
1  
Into JDK 7 source there is no more + 2 chars only the new value * 2 !!! – xdevel2000 Jul 6 '10 at 8:25
Interesting! Maybe they took it out as an optimisation? – Catchwa Jul 6 '10 at 10:26
Maybe, however into the jdk 7 documentation that is not yet updated! – xdevel2000 Jul 6 '10 at 11:11

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.

share|improve this answer
This article is about C#, isn't it? – Andreas_D Jul 6 '10 at 7:27
Yep. The formula is similar to Java but not exactly the same. – Catchwa Jul 6 '10 at 7:31
1  
My apologies - I saw StringBuilder and assumed .NET. – Alex Humphrey Jul 6 '10 at 7:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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