首页 > Windows开发 > 详细

C#ImmutableList和ReadOnlyCollection的区别

时间:2021-06-02 09:46:31      阅读:18      评论:0      收藏:0      [点我收藏+]
            var intList = new List<int>() { 1 };

            var readOnlyList = new ReadOnlyCollection<int>(intList);
            var immutableList = intList.ToImmutableList();


            Console.ForegroundColor = ConsoleColor.Green;
            Console.WriteLine("新增前--------------");
           
            Console.WriteLine("ReadOnlyCollection的数量:" + readOnlyList.Count);
            Console.WriteLine("ImmutableList的数量:" + immutableList.Count);

            intList.Add(2);

            Console.ForegroundColor = ConsoleColor.Yellow;
            Console.WriteLine("新增后--------------");
            
            Console.WriteLine("ReadOnlyCollection的数量:" + readOnlyList.Count);
            Console.WriteLine("ImmutableList的数量:" + immutableList.Count);

技术分享图片

总结

ReadOnlyCollection只是对原对象的包装。修改原对象还是会影响当前对象。所以不是线程安全的
ImmutableList则是真正不可变的。是线程安全的

C#ImmutableList和ReadOnlyCollection的区别

原文:https://www.cnblogs.com/qwfy-y/p/14839056.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!