public static class AbstractStringBuilder extends Object
StringBuffer
and StringBuilder
.
Most methods will give expected performance results. Exception is #setCharAt(int, char)
,
which is O(n), and thus should not be used many times on the same StringBuffer
.
Copyright © 2018. All rights reserved.