为了账号安全,请及时绑定邮箱和手机立即绑定

检查 List<T> 是否为空时空合并运算符的性能

检查 List<T> 是否为空时空合并运算符的性能

C#
aluckdog 2021-10-09 16:52:20
我有一个List<int>从方法中获取它的值List<int> items = GetIntegerStuff();所以当前避免 NullReference 异常的代码看起来像这样if (items == null){    items = new List<int>();}我把它改成这个是因为我喜欢短代码——但我的高级开发人员说这很糟糕,因为如果有项目(大约 90% 的请求都会发生),整个列表将被分配,这对性能不利。这是真的?items = items ?? new List<int>();
查看完整描述

2 回答

?
慕森卡

TA贡献1806条经验 获得超8个赞

这些是可能的方法:


//APPROACH 1

List<int> items = GetIntegerStuff();

if (items == null)

{

    items = new List<int>();

}


//APPROACH 2

List<int> items = GetIntegerStuff() ?? new List<int>();


//APPROACH 3

List<int> items = GetIntegerStuff();

items = items ?? new List<int>();


//APPROACH 4

List<int> items = GetIntegerStuff();

items = items == null ? new List<int>() : items;

我会选择2号,从我的角度来看,它是最干净的。


为了完整起见,在某些情况下您可以找到类似的内容:


class Program

{

    private static List<int> _items = new List<int>();


    private static List<int> Items

    {

        get

        {

            return _items;

        }


        set

        {

            _items = value ?? new List<int>();

        }

    }


    static void Main(string[] args)

    {

        //APPROACH 5

        Items = GetIntegerStuff();

    }


    private static Random Random = new Random();

    private static List<int> GetIntegerStuff()

    {

        switch (Random.Next(0, 2))

        {

            case 0:

                return null;

                break;

            default:

                return new List<int>();

                break;

        }

    }

}

这对性能有害吗?


List<int> items = GetIntegerStuff();

items = items ?? new List<int>();

不,但它实际上会执行更多关于以下方面的指令:


List<int> items = GetIntegerStuff();

if (items == null)

{

    items = new List<int>();

}

或者


List<int> items = GetIntegerStuff() ?? new List<int>();


查看完整回答
反对 回复 2021-10-09
  • 2 回答
  • 0 关注
  • 185 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信