代码演示C#中string和StingBuilder内存中的区别_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 代码演示C#中string和StingBuilder内存中的区别

代码演示C#中string和StingBuilder内存中的区别

 2014/9/17 16:43:24  r163  程序员俱乐部  我要评论(0)
  • 摘要:关于string和StringBuilder的区别参考MSDN。本文用程序演示它们在内存中的区别,及其因此其行为不同。//DemostringmemorymodelnamespaceConsoleApplication2{classProgram{staticvoidMain(string[]args){stringa="1234";stringb=a;//a,andbpointtothesameaddressConsole.WriteLine(a);Console.WriteLine(b)
  • 标签:C# 区别 代码 内存

关于 string和StringBuilder的区别参考MSDN。本文用程序演示它们在内存中的区别,及其因此其行为不同。

 

//Demo  string memory model

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {

            string a = "1234";

            string b = a;//a,and b point to the same address

            Console.WriteLine(a);

            Console.WriteLine(b);

 

            a = "5678";

            Console.WriteLine(a);

            Console.WriteLine(b);//That b's value is not changed means string's value cann't be changed


            Console.ReadKey();
        } 
            
    }
}

output:

1234

1234

5678;change a's value,b's value is not changed

1234

 

//Demo StringBuilder's memory model

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
  
            StringBuilder a = new StringBuilder("1234");
            StringBuilder b = new StringBuilder();
            b = a;
            a.Clear();
            a.Append("5678");
            Console.WriteLine(a);
            Console.WriteLine(b);
            Console.ReadKey();
        }

        
    }
}

 

output:

5678

5678

上一篇: 轻量级MVC标准 下一篇: 没有下一篇了!
发表评论
用户名: 匿名