|
Look at this question
using System;
class Class1 {
static void StringConvert (string str)
{
str = "string being converted.";
}
static void Main ()
{
string str1 = "str";
StringConvert (str1);
Console.WriteLine (str1);
}
}
The result output is: str
Still about value types and reference types
Everyone knows that string is a reference type. I can't figure this out.
my thoughts :
1, str1 points to the string value in the managed heap as str;
2, the static method StringConvert in memory calls str1 (because it is a reference, it must be of type string)
3. Because str1 is modified in the method, a string type space is re-allocated in the managed heap, str1 points to the modified memory, that is, "string being converted."
4, the Console.WriteLine method calls the memory pointed to by str1, which outputs "string being converted.";
Doubt:
After str1 is modified, it still points to "str", then the modified "string being converted."; who pointed to this memory, seems to disappear, how to output |
|