Difference between the String and StringBuffer classes?
Answers were Sorted based on User's Feedback
Answer / anitha
yes, String is a immutable that means once the string
object is created it cannot be changed.
String Buffer: it is a mutable,this object is changed if we
make any modifications.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / sathya
String class is immutable i.e oncle created the value
cannot chage.
Stringbuffer class is mutable.The value can change.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / latha
String is immutable and StringBuffer is mutable as most of
we know. In performance, StringBuffer is faster than the
String while performing simple concatenations.
| Is This Answer Correct ? | 5 Yes | 0 No |
What is lexicographically smallest string?
Can inner class extend any class?
Implementations of set interface?
Difference between doublesummarystatistics, intsummarystatistics and longsummarystatistics ?
When the constructor of a class is invoked?
How do you create a null object?
What is an object in java?
What are disadvantages of java?
Is vector synchronized in java?
Name the packages in JDK?
Can the garbage collection be forced by any means?
Which method is used to find that the object is exited or not?