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

List<int>是值类型还是引用类型

时间:2014-08-12 16:15:14      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   2014   ar   问题   div   

class Program
    {
        static void Main(string[] args)
        {
            List<int> lst = new List<int>();
            lst.Add(1);
            lst.Add(2);
            Console.WriteLine("未调用之前");
            Console.WriteLine(lst.Count+string.Join(",",lst));
            ChangeList(lst);
            Console.WriteLine("调用之后");
            Console.WriteLine(lst.Count + string.Join(",", lst));
            Console.ReadLine();
        }

        private static void ChangeList(List<int> lst)
        {
            lst.Clear();
            lst.Add(1000);
            lst.Add(2000);
        }    

输出结果如下:

bubuko.com,布布扣

可见,List<int>是引用类型,可能这个问题大家都知道了,我只是记录自己以后查看而已。

List<int>是值类型还是引用类型,布布扣,bubuko.com

List<int>是值类型还是引用类型

标签:style   blog   http   color   2014   ar   问题   div   

原文地址:http://www.cnblogs.com/kevin-h-wang/p/3907091.html

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