What is the differnence between String Buffer and String
builder despite having knowledge that String builder is
faster than String Buffer and last one is threadsafe.please
tell another important difference.

Answer Posted / rinaldoshi kalol

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 ?    16 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a prefix function.write down a code to compute prefix function.

542


What is keyset in java?

657


explain local datetime api in java8?

557


What is difference between static class and singleton pattern?

479


What does the “static” keyword mean?

584






Why is java logo a cup of coffee?

625


What is the meaning of find and replace?

527


What is main in java?

512


Why we use protected in java?

538


Can a class be private in java?

545


What is intern method in java?

583


What is the difference between error and an exception?

569


How many wrapper classes are there in java?

536


Can we start a thread twice in java?

510


What is the difference between stringbuffer and stringbuilder?

577