Forums Register Login

string immutable?

+Pie Number of slices to send: Send
I read a article in that String class are immutable.
String a=�a�;
String h=�h�;

String class is immutable, that means that one an instance of String class is created, the string it contais cannot be changed, only reference will change to point to a
different string.

If two references point to same instance then If I change the values of in one, does not affect other reference?
+Pie Number of slices to send: Send
 

I read a article in that String class are immutable.
.....
If two references point to same instance then If I change the values of in one, does not affect other reference?



They are immutable, how do you change the value in one instance?
+Pie Number of slices to send: Send
then what is use of

String a=�a�;
String h=�h�;

than

String a=new String("a");
String h=new String("h");
+Pie Number of slices to send: Send
We don't use the second one.
+Pie Number of slices to send: Send
why could you please in detail.I read a book ,this is not given clearly.
Can you assist in this >?
+Pie Number of slices to send: Send
String objects are immutable. What that means is that you cannot change the contents of a String object. You can have to variables referencing the same String object, but since the String object itself cannot be changed, you can't get strange effects.

Because String objects are immutable, the Java compiler can safely implement an optimization trick. If you write a program in which you use the same literal string more than once, for example like this:

Then the Java compiler is smart enough to create only one String object with the content "Hello", and make the variables 'one' and 'two' refer to that single String object. This is good, because it saves memory.

If you do this:

Then you are explicitly creating two String objects with the same content "Hello". This is less memory-efficient.

There's no use ever to using new String("...") in a Java program, so you should never write code that does that.
[ November 21, 2008: Message edited by: Jesper Young ]
He's dead Jim. Grab his tricorder. I'll get his wallet and this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 1233 times.
Similar Threads
Item 13 Favor Immutability from Effective Java Edition #1
why String is final ?
private static final
Immutable classes
'JvalTest' Java2 Certification Mock Exam Applet
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 08:45:17.