Java StringBuffer Class

Java StringBuffer class is used to create mutable (modifiable) String objects. The StringBuffer class in Java is the same as String class except it is mutable i.e. it can be changed.

Note: Java StringBuffer class is thread-safe i.e. multiple threads cannot access it simultaneously. So it is safe and will result in an order.

Important Constructors of StringBuffer Class

ConstructorDescription
StringBuffer()It creates an empty String buffer with the initial capacity of 16.
StringBuffer(String str)It creates a String buffer with the specified string..
StringBuffer(int capacity)It creates an empty String buffer with the specified capacity as length.

Important methods of StringBuffer class

Modifier and TypeMethodDescription
public synchronized StringBufferappend(String s)It is used to append the specified string with this string. The append() method is overloaded like append(char), append(boolean), append(int), append(float), append(double) etc.
public synchronized StringBufferinsert(int offset, String s)It is used to insert the specified string with this string at the specified position. The insert() method is overloaded like insert(int, char), insert(int, boolean), insert(int, int), insert(int, float), insert(int, double) etc.
public synchronized StringBufferreplace(int startIndex, int endIndex, String str)It is used to replace the string from specified startIndex and endIndex.
public synchronized StringBufferdelete(int startIndex, int endIndex)It is used to delete the string from specified startIndex and endIndex.
public synchronized StringBufferreverse()is used to reverse the string.
public intcapacity()It is used to return the current capacity.
public voidensureCapacity(int minimumCapacity)It is used to ensure the capacity at least equal to the given minimum.
public charcharAt(int index)It is used to return the character at the specified position.
public intlength()It is used to return the length of the string i.e. total number of characters.
public Stringsubstring(int beginIndex)It is used to return the substring from the specified beginIndex.
public Stringsubstring(int beginIndex, int endIndex)It is used to return the substring from the specified beginIndex and endIndex.

What is a mutable String?

A String that can be modified or changed is known as mutable String. StringBuffer and StringBuilder classes are used for creating mutable strings.

1) StringBuffer Class append() Method

The append() method concatenates the given argument with this String.

StringBufferExample.java

Output:

Hello Java

2) StringBuffer insert() Method

The insert() method inserts the given String with this string at the given position.

StringBufferExample2.java

Output:

HJavaello

3) StringBuffer replace() Method

The replace() method replaces the given String from the specified beginIndex and endIndex.

StringBufferExample3.java

Output:

HJavalo 

4) StringBuffer delete() Method

The delete() method of the StringBuffer class deletes the String from the specified beginIndex to endIndex.

StringBufferExample4.java

Output:

Hlo 

5) StringBuffer reverse() Method

The reverse() method of the StringBuilder class reverses the current String.

StringBufferExample5.java

Output:

olleH  

6) StringBuffer capacity() Method

The capacity() method of the StringBuffer class returns the current capacity of the buffer. The default capacity of the buffer is 16. If the number of character increases from its current capacity, it increases the capacity by (oldcapacity*2)+2. For example if your current capacity is 16, it will be (16*2)+2=34.

StringBufferExample6.java

Output:

16
16
34

7) StringBuffer ensureCapacity() method

The ensureCapacity() method of the StringBuffer class ensures that the given capacity is the minimum to the current capacity. If it is greater than the current capacity, it increases the capacity by (oldcapacity*2)+2. For example if your current capacity is 16, it will be (16*2)+2=34.

StringBufferExample7.java

Output:

16
16
34
34
70





Latest Courses