Methods of StringBuffer class in Java.


Following are the various constructors provided by the StringBuffer class.

S.N.
Constructor & Description
1StringBuffer()
This constructs a string buffer with no characters in it and an initial capacity of 16 characters.
2StringBuffer(CharSequence seq)
This constructs a string buffer that contains the same characters as the specified CharSequence.
3StringBuffer(int capacity)
This constructs a string buffer with no characters in it and the specified initial capacity.
4StringBuffer(String str)
This constructs a string buffer initialized to the contents of the specified string.

Updated on: 30-Jul-2019

233 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements