Difference between String and String Buffer?
Answers were Sorted based on User's Feedback
Answer / janet
1. String objects are constants and immutable where as
StringBuffer objects are not.
2.String class supports constant strings where as
StringBuffer class supports growable and modifiable strings.
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / sumati
String is immutable
String buffer is mutable
Ex String str = "abc";
str = "new String";
this will creat new memory location and stores "new String"
but in String buffer
StringBuffer strBuf = "abc";
strBuf = "new String"
it will overwrite in same memory location
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
string is immutable
string buffer is mutable
| Is This Answer Correct ? | 7 Yes | 0 No |
What is comparable and comparator interface? List their differences
What is difference between fileinputstream and filereader in java?
What is java literals?
What is a 16 bit word?
What is array length in java?
What is parsing in grammar?
what is multitherading
what is Dictionary? and what purpose it is used for?
Why java is platform independent? Explain.
In the below example, what will be the output?
Mention some features of java?
What are java methods?