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
How primary key is implemented in Oracle?
Can I run seam outside of jboss as?
What is the purpose of the wait() method?
What is difference between object state and behavior?
Can I import same package/class twice? Will the jvm load the package twice at runtime?
Can I map more than one table in a cmp?
What are the different class loaders used by jvm?
What is permgen or permanent generation?
How to deploy Jar, War files in J2EE?
what is meant by JRMP?
Why use POJO when I can use hashmap
What is the relationship between an event-listener interface and an event-adapter class?
What’s jboss jbpm?
What is prototype?
what is handle?