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?
| ||||
|
feedback
|
|
May I suggest that you allocate a new one instead of clearing? It's probably about as cheap as wiping the buffer. | |||||||||||||||||||
feedback
|
|
There are basically two alternatives, using 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. | |||||
feedback
|
|
You can also do :
| |||||||||||||
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. | ||||
|
feedback
|