string a = "a";
string b = a;
string a = "c";
Why does string b still have the value "a" and not "c"?
As string is an object and not a stack value type, what's with this behaviour?
Thanks
Why does string As string is an object and not a stack value type, what's with this behaviour? Thanks |
||||
|
|
Let me start by saying that your choices for variables and data are poor. It makes it very difficult for someone to say "the string a in your example..." because "a" could be the content of the string, or the variable containing the reference. (And it is easily confused with the indefinite article 'a'.) Also, your code doesn't compile because it declares variable "a" twice. You are likely to get better answers if you ask questions in a way that makes them amenable to being answered clearly. So let's start over. We have two variables and two string literals.
Now the question is "why does y equal 'hello' and not 'goodbye'"? Let's go back to basics. What is a variable? A variable is a storage location. What is a value of the string type? A value of the string type is a reference to string data.. What is a variable of type string? Put it together. A variable of type string is a storage location which holds a reference to string data. So, what is x? a storage location. What is its first value? a reference to the string data "hello". What is y? a storage location. What is its first value? a reference to the string data "hello", same as x. Now we change the contents of storage location x to refer to the string data "goodbye". The contents of storage location y do not change; we didn't set y. Make sense?
I deny the premise of the question. String object refs do behave like other object refs. Can you give an example of where they don't? |
|||||||||||||||||||
|
|
You're pointing the variable to something new, it's no different than if you said
In this example,
In this case, "Bar" gets written to the screen because |
|||||||||||||||||
|
|
Part of what confuses people so much about this is thinking of the following as an append operation:
If
Then what you're asking would make sense. But The below comparison between code that deals with two
Compare this with a slightly modified version of the code you posted:
|
||||
|
|
|
In .Net, a, b and c are reference to the objects and not the objects themselves. When you reset a, you are pointing this reference to a new memory location. The old memory location and any references to it are unchanged. |
|||
|
|
|
I guess the OP thinks string objects to be mutable, so something like String is, however, an immutable type, which means that in this case a new string object is created and assigned to See for example: http://codebetter.com/blogs/patricksmacchia/archive/2008/01/13/immutable-types-understand-them-and-use-them.aspx |
|||
|
|
|
It is a misunderstanding because of the builtin string support of c#.
The second way to define a is more obvious what happens, but it is verbose.Since strings have direct support from the compiler calling the string constructor is unnecessary.
Here the behavior is as expected a gets a reference to the new string object assigned. while the reference held by b still points to the old string. |
|||
|
|