what is the difference between the StringBuffer vs StringBuilder Vs StringTokenizer on the internal implementation. when to use these . kindly waiting for the answer.
Update:-
I am also going through the source code.
|
what is the difference between the StringBuffer vs StringBuilder Vs StringTokenizer on the internal implementation. when to use these . kindly waiting for the answer. Update:-I am also going through the source code. |
|||
|
|
|
|
|||||
|
Here is StringBuilder & StringBuffer Holds String where StringoTokeizer class allows an application to break a string into tokens .. So It is like odd one out |
||||
|
|
|
StringBuffer - is sychronized version of StringBuilder (introduced after its unsynchronized peer) |
|||||||
|
|
StringBuffer serves same purpose as StringBuilder except that StringBuffer is thread-safe. |
|||
|
|