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 |
Explain throw keyword in java?
What happens if we don’t define serial version uid?
What is the argument in java?
what is the J2EE BluPrints?
Can constructor be inherited?
What is the difference between Checked and Unchecked exception? Give some examples
What package is math in java?
List some important characteristics on jre
Define jre i.e. Java runtime environment?
What does opcode mean?
What are the different http methods?
Can array grow dynamically in java?