what is mutability?which one is mutable String or StringBuffer?and why?give
examples of each which shows the mutability of each String or StringBuffer

Answer Posted / harinath.b (sai sudhir p.g co

The following programe of mine simply gives ans.

class Sample5{
public static void main(String ask[]){

String s1=new String("Harinath");
System.out.println("s1 : "+s1);
System.out.println("s1 address : "+s1.hashCode());
String s2=new String("Simple");
s1=s1.concat(s2);
System.out.println("s1 : "+s1);
System.out.println("s1 address : "+s1.hashCode());


System.out.println("--------------------------------------------------");

StringBuffer s3=new StringBuffer("Harinath");
System.out.println("s3 : "+s3);
System.out.println("s3 address : "+s3.hashCode());
StringBuffer s4=new StringBuffer("Simple");
s3=s3.append(s4);
System.out.println("s3 : "+s3);
System.out.println("s3 address : "+s3.hashCode());
}
}

output:-
D:\>javac Sample5.java

D:\>java Sample5
s1 : Harinath
s1 address : 185903223
s1 : HarinathSimple
s1 address : -1382461175
--------------------------------------------------
s3 : Harinath
s3 address : 17523401
s3 : HarinathSimple
s3 address : 17523401


means whenever we go for String class ,String allows
to add new String object.But JVM creates new String object
and stores old and new String objects in it,assigns new
address for it.See the above address if you doubt,
s1 : Harinath
s1 address : 185903223
This is s1 address before adding
s1 : HarinathSimple
s1 address : -1382461175
This is the s1 address after adding .
Means new object is created with s1 & s2 , This new
object address is assigned to s1 variable . Now s1 is
reffering to the new object.


Whereas in StringBuffer class this not happens.Because
StringBuffer allows to add new contents in old object
only.It modifies only the old object, it doesn't create new
Object.That is why address is not modified.

Note:-
String allows concat() method.
StringBuffer allows append() method.
If change either of this sequence it will be error.

The above answer is wrong.Because if u use append() on
StringBuffer,concat() on String objects definitly the actual
object is modified.No matter about heap.Our programe is
showing clearly the modifiwd content.

Is This Answer Correct ?    26 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is array dynamic in java?

491


Can java object be locked down for exclusive use by a given thread?

594


What are the basic concepts of OOPS in java?

579


What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?

698


What is pre increment and post increment in java?

514






Difference between predicate, supplier and consumer ?

600


Who developed java?

586


What is nullpointerexception in java?

534


Can I declare class as static or private?

553


What happens when you add a double value to a string?

557


What is the difference between and ?

520


What are the 8 data types in java?

535


How can you read content from file in java?

603


Differentiate between overriding and overloading cases?

603


What is the final variable?

587