码迷,mamicode.com
首页 > 其他好文 > 详细

对象间引用赋值及方法时引用传递

时间:2016-11-16 11:17:09      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:bsp   ima   .com   adk   png   test   image   void   images   

考虑下面代码:

    class Program
    {
        static void Main(string[] args)
        {
            C c1 = new C();
            c1.str = "hello";

            C c2 = new C();
            c2 = c1; //对象名即是对象引用,对象间赋值即是引用复制赋值,此时栈区的c2和c1同时指向堆区的同一块内存区域

            Console.WriteLine(c1.str);
            Console.WriteLine(c2.str);

            c2.str = "world";
            Console.WriteLine(c1.str);
            Console.WriteLine(c2.str);

            Set(c1,"test1");
            Console.WriteLine(c1.str);
            Console.WriteLine(c2.str);

            Set(c2, "test2");
            Console.WriteLine(c1.str);
            Console.WriteLine(c2.str);

            Console.ReadKey();
        }

        //对象名作为参数传入时,传入的是对象的引用
        public static void Set(C c,string msg)
        {
            c.str = msg;
        }
    }

    class C
    {
        public string str = string.Empty;
    }

体会输出结果:

技术分享

 

对象间引用赋值及方法时引用传递

标签:bsp   ima   .com   adk   png   test   image   void   images   

原文地址:http://www.cnblogs.com/Arlar/p/6068633.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!