How many characters can a Java StringBuilder hold?
Yes, it has limitation in capacity of max integer which 2147483647(technically).
StringBuilder
internally holds chracters in char[]
object, and array has limitation in size. read more about it on other thread