string是C#中比较常用的字符串类型,之前一直都只是使用它,却没有深入的去了解,今天在书中忽然看到它具有不可变性;于是便仔细了解了一下。
//声明并初始化string类型变量 string Text = “Hello”; //对string类型变量赋值 Text = “Hi”
在这里,在把Hi字符串赋给string变量Text之前 内存首先会重新初始化一块区域,并把区域的值初始化为Hi。之后,这块内存的地址将赋给变量Text,而原来存放hello的内存区域则不会改变,可以看出,string类型具有不可变性。
string类型为引用类型,string变量本身存储在栈中,而变量所指向的值则存储在托管堆中,其内存分布情况如下:
下面是具体代码分析:
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace ReadOnlyOrConst { class Program { static void Main(string[] args) { string numSize = "100"; var addr = getMemory(numSize); Console.WriteLine("num_Size addr = " + addr); numSize = "101"; addr = getMemory(numSize); Console.WriteLine("num_Size addr = " + addr); Console.ReadKey(); } public static string getMemory(object o) { GCHandle h = GCHandle.Alloc(o, GCHandleType.WeakTrackResurrection); IntPtr addr = GCHandle.ToIntPtr(h); return "0x" + addr.ToString("X"); } } }
编译运行后得到结果如下图所示:
原文地址:https://www.cnblogs.com/QingYiShouJiuRen/p/10896310.html
时间: 2024-10-12 18:23:37