Home Java String-examples Creation of StringBuffer



Creation of StringBuffer
Posted on: August 18, 2007 at 12:00 AM
In this section, you will learn how to create a string buffer.

Creation of StringBuffer

     

In this section, you will learn how to create a string buffer. Here we have used the following StringBuffer Constructors.

StringBuffer() //Default Constructor with 16 characters set
StringBuffer(String s) //String to String Buffer
StringBuffer(int initialCapacity) //StringBuffer?s with initial Capacity 

Description of code:

As mentioned above we have taken three String buffer constructors here. One is the default with 16 characters and other two takes the String buffer and capacity of StringBuffer. Therefore we get the following output.

public class StringBufferExample{
  public static void main(String[] args) {
  StringBuffer strBuffer1 = new StringBuffer("Bonjour");  
  StringBuffer strBuffer2 = new StringBuffer(60);  
  StringBuffer strBuffer3 = new StringBuffer();  
  
  System.out.println("strBuffer1 : " +strBuffer1);
  System.out.println("strBuffer2 capacity : " +strBuffer2.capacity());
  System.out.println("strBuffer3 capacity : " +strBuffer3.capacity());
  }
}

Output of the program:

C:\unique>javac StringBufferExample.java

C:\unique>java StringBufferExample
strBuffer1 : Bonjour
strBuffer2 capacity : 60
strBuffer3 capacity : 16

C:\unique>

Download this example.

 

Related Tags for Creation of StringBuffer:
cstringconstructorstructsedconstchardefaultbufferintsetcharactercharactersctewithconstructorstoinicieitinituseulfaultinnttrcastringbuffercapacitytorsctorpacrachallgbfollowaractcityconsstrwingufssriringthavst6apctofeefaultinitialinitialcapacityonolo


More Tutorials from this section

Ask Questions?    Discuss: Creation of StringBuffer   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.