Chapter 12: StringBuffer

No Comments
Introduction to Java StringBuffer class.

Section 12.1: String Buffer class

Key Points:
  • used to created mutable (modifiable) string.
  • Mutable: Which can be changed.
  • is thread-safe i.e. multiple threads cannot access it simultaneously.
Methods:
  • public synchronized StringBuffer append(String s)
  • public synchronized StringBuffer insert(int offset, String s)
  • public synchronized StringBuffer replace(int startIndex, int endIndex, String str)
  • public synchronized StringBuffer delete(int startIndex, int endIndex)
  • public synchronized StringBuffer reverse() public int capacity()
  • public void ensureCapacity(int minimumCapacity) public char charAt(int index)
  • public int length()
  • public String substring(int beginIndex)
  • public String substring(int beginIndex, int endIndex)
Example Showing difference between String and String Buffer implementation:

public static void main(String args[])

{

String str = “study”;

str.concat(“tonight”);

System.out.println(str);                       //  Output:  study

StringBuffer strB = new StringBuffer(“study”);

strB.append(“tonight”);

System.out.println(strB);                  //  Output:  studytonight

}

} class Test {

About us and this blog

We are a digital marketing company with a focus on helping our customers achieve great results across several key areas.

Request a free quote

We offer professional SEO services that help websites increase their organic search score drastically in order to compete for the highest rankings even when it comes to highly competitive keywords.

Subscribe to our newsletter!

More from our blog

See all posts
No Comments

Recent Posts