Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is difference between String buffer and String builder?

Answer Posted / mohan

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 ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is multi level inheritance in java?

1075


Does java set allow duplicates?

1131


What is the difference amongst jvm spec, jvm implementation, jvm runtime ?

1013


Can we have multiple classes in a single file?

1024


Will the compiler creates a default constructor if I have a parameterized constructor in the class?

1164


What is java used for?

1059


What is entry set in java?

1229


Is an object null?

1026


What is garbage collection? What is the process that is responsible for doing that in java?

1154


How we can run a jar file through command prompt in java?

1013


What is the exact difference in between Unicast and Multicast object? Where will it be used?

1101


What is a treeset class?

1060


List down the methods and interfaces of collection class in java.

1030


Is linkedlist thread safe in java?

1033


Is overriding possible in java?

1005