Thanks to visit codestin.com
Credit goes to www.tutorialspoint.com

Methods of StringBuilder Class in Java



Following are the various constructors provided by the StringBuilder class.

S.N.
Constructor & Description
1 StringBuilder()
This constructs a string builder with no characters in it and an initial capacity of 16 characters.
2 StringBuilder(CharSequence seq)
This constructs a string builder that contains the same characters as the specified CharSequence.
3 StringBuilder(int capacity)
This constructs a string builder with no characters in it and an initial capacity specified by the capacity argument.
4 StringBuilder(String str)
This constructs a string builder initialized to the contents of the specified string.
Updated on: 2019-07-30T22:30:21+05:30

265 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements