I'm using a StringBuilder in a loop and every x iterations I want to empty it and start with an empty StringBuilder, but I can't see any method similar to the .Net StringBuilder.Clear in the docs, just the delete method which seems overly complicated.
So what is the best way to clean out a StringBuilder in Java?

link|improve this question

feedback

4 Answers

up vote 27 down vote accepted

May I suggest that you allocate a new one instead of clearing? It's probably about as cheap as wiping the buffer.

link|improve this answer
Not too worried about performance unless it's a huge difference so as long as I'm doing it in a way that won't have future developers wonder why I did it in a certain way I'm happy. – ho1 Mar 4 '11 at 10:35
1  
You can leave a little comment if you're afraid future developers won't understand – krtek Mar 4 '11 at 10:36
4  
No, it isn't as cheap! How can you say that? Suppose you have a buffer with capacity of 1000 chars. Then you dispose of it (work for GC) and create a new one (work for allocator). It's a lot faster just to set the text length to zero (virtually no work for CPU) and reuse the same buffer. – Sulthan Jun 14 '11 at 9:08
1  
@Sulthan: Oh, late with this answer: I was thinking about StringBuffer.delete(idx, len). On the other hand, doing a setLength requires it to iterate the entire buffer and null each character (e.g. kickjava.com/src/java/lang/AbstractStringBuilder.java.htm). Depending on the size of the buffer, that could be expensive as well. On the other hand, unless it's uber-performant code, go with what looks clearest to you and don't spend time on micro-optimization. – Marcus Jan 2 at 14:34
1  
@Marcus, in the link you provided as an example, setLength(0) will not iterate as you say, it'll do that only if the new length is greater than the used-char count (can't happen with 0 length). For performance it would seems like setLength(0) is the best, and it also seems like a very clear meaning of emptying the buffer. – Xenorose May 12 at 22:08
show 3 more comments
feedback

There are basically two alternatives, using setLength(0) to reset the StringBuilder or creating a new one in each iteration. Both can have pros and cons depending on the usage.

If you know the expected capacity of the StringBuilder beforehand, creating a new one each time should be just as fast as setting a new length. It will also help the garbage collector, since each StringBuilder will be relatively short-lived and the gc is optimized for that.

When you don't know the capacity, reusing the same StringBuilder might be faster. Each time you exceed the capacity when appending, a new backing array has to be allocated and the previous content has to be copied. By reusing the same StringBuilder, it will reach the needed capacity after some iterations and there won't be any copying thereafter.

link|improve this answer
1  
Thanks, I had forgotten about the constructor with the capacity parameter. – ho1 Mar 4 '11 at 11:43
feedback

delete is not overly complicated :

myStringBuilder.delete(0, myStringBuilder.length());

You can also do :

myStringBuilder.setLength(0);
link|improve this answer
Complicated is probably the wrong word, I meant more that it doesn't look as neat. – ho1 Mar 4 '11 at 10:31
But not overly efficient compared to performing a new allocation. – Johan Sjöberg Mar 4 '11 at 10:32
1  
This is why I added the setLength(0) version, which should be faster. But probably that a new allocation will be faster. – krtek Mar 4 '11 at 10:34
1  
The setLength alternative was interesting, thank you. – ho1 Mar 4 '11 at 10:44
feedback

If you look at the source code for a StringBuilder or StringBuffer the setLength() call just resets an index value for the character array. IMHO using the setLength method will always be faster than a new allocation. They should have named the method 'clear' or 'reset' so it would be clearer.

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.