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
Why a client should be multithreading? Explain.
Why does the tag url-encode javascript and mailto links?
Is the ternary operator written x : y ? Z or x ? Y : z ?
What is the difference between ear, jar and war file?
What is ioc concept & explain it?
Can I use javascript to submit a form?
whats is statement and procedure
What is table mutation and how do you avoid it?
what is a portable component?
Should synchronization primitives be used on bean methods?
What is the diffrence between a local-tx-datasource and a xa-datasource?
Explain ioc concept?
What do you need to set-up a cluster with jboss?
What is the highest-level event class of the event-delegation model?
Describe responsibilities of Activator?