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 stringBuffer and StringBuilder?

Answers were Sorted based on User's Feedback



what is stringBuffer and StringBuilder?..

Answer / 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

what is stringBuffer and StringBuilder?..

Answer / modi[achir communication]

All methods in StringBuffer class are Synchronized whereas
in StringBuilder class methods are not synchronized.
StringBuilder is faster than StringBuffer because of the
synchronized method in StringBuffer.

Is This Answer Correct ?    4 Yes 1 No

what is stringBuffer and StringBuilder?..

Answer / srinu

StringBuffer:-
1)All methods in String Buffer class are Synchronized.
2)Performance is slow because these are synchronized.

StringBuilder:-
1)StringBuilder class methods are not synchronized.
2)performance is faster.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Advanced Java Interview Questions

What is permgen or permanent generation?

0 Answers  


In HashTable I am storing null value..then what is the error it will show

2 Answers   GM General Motors,


Can I run seam outside of jboss as?

0 Answers  


What is Servlet Filter And What does it work?

1 Answers   TCS,


What if the static modifier is removed from the signature of the main method?

0 Answers  


JMS based on what technology?

1 Answers  


important features of java which differenciate it from c++

3 Answers  


Explain about RMI Architecture?

0 Answers  


What is synchronization?

6 Answers   Verizon,


can a static method be overridden

41 Answers   IBM, SolutionNET,


what is meant by JRMP?

0 Answers  


whether the connectionpooling used in struts?

2 Answers   SolutionNET,


Categories