Criteria to choose among String, StringBuffer and StringBuilder(Explained in detail)
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.
No comments:
Post a Comment