what is diff string and stringbuffer
Answers were Sorted based on User's Feedback
Answer / monika
string is immutable, that is it can not be extended.whereas
StringBuffer is mutable and can be extended.
Fro example :
Consider 2 statement : "Welcome " and "to Java World".
now assign first statement to string and string buffer.
String str = "Welcome" & StringBuffer strBuff = new
StringBuffer("Welcome");
Now if we add 2nd statement to both then :
str= str + "to Java World" -> In this case, it would dump
all the memory allocated with "welcome" and allocate a new
memory space to the entire string "Welcome to Java World" .
On the other hand, in strBuff :-
strBuff.append("to Java World") -> if simply allocate a
new memory space to only 2nd statement and add to link to
previous name.
| Is This Answer Correct ? | 51 Yes | 7 No |
Answer / gayathri
String is immutable that once the value assigned to object
cannot be modified.Suppose if we want to perform
concatenation another string object will be prepared and
the value is going to assign for that object.in total we
are having 2 objects
StringBuffer is Mutable we can change the value of the
object even the value is assigned to the object.
| Is This Answer Correct ? | 29 Yes | 2 No |
Answer / kesavaraj
Simple Example for String And String Buffer.
String must allow the declared memory space to the variable.
String Buffer automatically increase the Exists memory space
| Is This Answer Correct ? | 18 Yes | 2 No |
Answer / rohit aggarwal
String is Immutable and String buffer is mutable.
Inside String.java, equals() method is overrideen but not
the case in StringBuffer.
This all is the simple.
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / aashish r. wadhokar
string is immutable,that we can not be modify its value.
when we assign any new value to String variable.a new object
is created on heap memory and that string variable refers to
that object.
whereas
StringBuffer is mutable so we can be modify its value.
as it refers to the same object and changes the state of
that object
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / rahul shukla
string class is to mainpulate character strings that can not be changed.
string buffer._-- class is used to represent character that can be modified.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sudheer babu
Both string and string buffer are different ,in the case of
the String it can ready only and immutable where as the
String Buffer is the modifier and mutable.
EX:
String s1="abc";
S.o.p(s1);---------->o/p is abc
StringBuffer sb=new StringBuffer("abc");
s.o.p(sb);---------->o/p is abc
here we can modify the String buffer values if we want i.e
sb.append("z");
s.o.p(sb);----------->0/p is abcz
"this is the basic difference between the String and String
Buffer."
| Is This Answer Correct ? | 8 Yes | 9 No |
what is difference between vector and arraylist?.
where is JNDI being used in java platform?
What is an Ioc pattern? There are assemblies in .net for establishing this task, Whats the special in Java /j2ee technologies about IOC
What are the types of the main implementing classes in the map interfaces? : java collections
who will give req's to u?. how they send req's to u? . what design documents contains?. when bugs raised on other developer code how to report to them?.(throgh mail or ........). how to retrive 100 recods from dao layer to presentation layer.using which collection?. what is sequence diagram.?.
"Sun Certified Java Programmer" This is one String , we need to print SCJP, write the java code dynamically? pls reply this questions
what are advantages of HQL? what are advantages of Native SQL? what are advantages of Criteria API?
What is the use of log4j and how to make use of that in a application?
please mail me the interview question based on java/j2ee
What is the difference between Eclipse and MyEclipse?
I have include a jsp page by using <jsp:include page="/.../xyz.jsp"/> The thing is that the xyz.jsp page has its submit button.When i click on that button the whole main page get refreshed.But i want to refresh only the xyz.jsp page.How could i achive it so that i can only refresh the xyz.jsp not the main page page?
Hi frnds how to lock an user when he enter wrong credentials more than 3 time using java or j2ee tech take username and password in a bean no need to connect DB and validate give me some sample application code or links its urgent for me thanks in advance