calculation for capacity | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

calculation for capacity

StringBuffer sbl = new StringBuffer ("Capacity of sb"); System.out.println(sbl.capacity ()); OUTPUT IS 30 capacity of sbl = 14 initial memory allocated = 16 my question is how does the java calculated the capacity?

16th Feb 2017, 8:04 AM
Adzreel Zeequanil Martadam
Adzreel Zeequanil Martadam - avatar
2 Answers
+ 1
public StringBuffer (String str) constructs a string buffer initialized to the specified string. The inicial capacity of the StringBuffer is 16 plus the lenght of the string argumento. The capacity is the amount of storage avaliable for newly inserted characters, beyond which an allocation will occur. Every string buffer has a capacity. As long as The lenght of the characters sequence contained in the string buffer does not exceed the capacity, it is not necessary to allocate a new internal buffer array. If internal buffer overflows, it automatically made larger.
16th Feb 2017, 9:46 AM
Felipe Cruz
Felipe Cruz - avatar
0
Thanks for the answer. excuse me, it will automatically or we have to initialize ourself the storage for capacity?
16th Feb 2017, 9:51 AM
Adzreel Zeequanil Martadam
Adzreel Zeequanil Martadam - avatar