ensureCapacity( )
To preallocate room for a certain number of characters after a StringBuffer has been constructed, use ensureCapacity( ) to set the size of the buffer.
ensureCapacity( ) has this general form:
void ensureCapacity(int capacity)
capacity specifies the size of the buffer.
public class Main {
public static void main(String args[]) {
StringBuffer sb = new StringBuffer();
sb.ensureCapacity(100 );
sb.append("java2s.com");
System.out.println(sb.capacity());
System.out.println(sb.length());
System.out.println(sb.toString());
}
}
Output:
100
10
java2s.com
Home
Java Book
Essential Classes
Java Book
Essential Classes
StringBuffer:
- Create StringBuffer object
- append
- StringBuffer capacity()
- charAt(int index): get the char at specified index
- delete(int start, int end) and deleteCharAt(int index)
- ensureCapacity( )
- getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
- indexOf(String str)
- lastIndexOf(String str)
- StringBuffer length()
- Insert(): add data in the middle of a StringBuffer
- replace():replace a StringBuffer
- StringBuffer reverse()
- setCharAt(int index, char ch)
- setLength
- substring
- toString():Convert StringBuffer to String