I Don,t know about string builder classes.please help me by describing what is string builder classes and what are the use of string builder classes.
I am assuming you're referring to the java.lang.StringBuilder class now present in recent JDKs. That class is intended to replace code like this: String foo = "bar"; foo += "bar2"; foo += "bar3"; foo += "bar4"; Code (markup): which creates all sorts of temp strings in the generated bytecode, potentially creating inefficiencies. Although I'd say 90% of the time, that's overkill. But StringBuilder is used to do appends to an existing string with a dynamic buffer. If you're doing huge operations, you might benefit. Most of the time, probably not.