devxlogo

String to StringBuffer Conversion

String to StringBuffer Conversion

Question:
How do I convert a String object to a StringBuffer object? I tried to put a String object into a stringBuffer using a cast, but I got an invalidcast error message.

Answer:
String is an immutable class derived only from Object. Thereforeyou cannot cast it to another type. In C++ a copy constructor will be invoked, if available, when performing an assignment, but thereis no equivalent behavior in Java.

To convert a String toa StringBuffer you must create a new StringBuffer instance with theString as an argument to the constructor. For example:

String str = "a string";StringBuffer strbuf;strbuf = new StringBuffer(str);
See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist