Answer Posted / anonymous
String is immutable whereas StringBuffer and StringBuilder
can change their values.
The only difference between StringBuffer and StringBuilder
is that StringBuilder is unsynchronized whereas
StringBuffer is synchronized. So when the application needs
to be run only in a single thread then it is better to use
StringBuilder. StringBuilder is more efficient than
StringBuffer.
Criteria to choose among String, StringBuffer and
StringBuilder
If your text is not going to change use a string Class
because a String object is immutable.
If your text can change and will only be accessed from a
single thread, use a StringBuilder because StringBuilder is
unsynchronized.
If your text can changes, and will be accessed from
multiple threads, use a StringBuffer because StringBuffer
is synchronous.
| Is This Answer Correct ? | 26 Yes | 0 No |
Post New Answer View All Answers
What is message driven beam?
Can you control when passivation occurs?
What do you know about seam?
what are the activation groupworks?
whats is mean by tiles in struts
what is meant by JRMP?
What is bean? Where can it be used?
What is re-entrant. Is session beans reentrant. Is entity beans reentrant?
which book is better for jdbc ,servlets and jsp
What restrictions are placed on the values of each case of a switch statement?
Why is actionform a base class rather than an interface?
Explain the steps in details to load the server object dynamically?
How will you pass parameters in RMI? Why do you serialize?
What is threadfactory?
What is the difference between the session.get() method and the session.load() method?