Parasoft无法识别自定义IEnumerable扩展方法.IsNullOrEmpty()

时间:2019-04-08 19:36:42

标签: c# parasoft

我们有一个自定义扩展方法.IsNullOrEmpty(),它的功能完全像听起来那样。

public static bool IsNullOrEmpty<T>(this IEnumerable<T> target)
{
  bool flag = true;
  if (target != null)
  {
    using (IEnumerator<T> enumerator = target.GetEnumerator())
    {
      if (enumerator.MoveNext())
      {
        T current = enumerator.Current;
        flag = false;
      }
    }
  }
  return flag;
}

但是,parasoft不能将其识别为有效的空检查,并且会给出

  

BD.EXCEPT.NR-1:避免NullReferenceException

使用扩展方法后很快。

示例:

IEnumerable<Foo> foos = _repo.GetFoos();
IEnumerable<Bar> bars;

if (!foos.IsNullOrEmpty())
{
    bars = foos.Select(foo => foo.Bar);  // This is where the Parasoft violation would occur.
}

是否可以让Parasoft识别我们的扩展方法?

1 个答案:

答案 0 :(得分:1)

如果目标为null,则无法在其上调用方法,它将被炸毁。

您仍然需要null检查。

if (foos != null && !foos.IsNullOrEmpty())
{
    bars = foos.Select(foo => foo.Bar);  // This is where the Parasoft violation would occur.
}

另一种方法是创建一个函数来检查它是否有数据(与您的函数相反),然后可以调用?在这种情况下,空对象和布尔值上的运算符将返回FALSE。

if (foos?.Any())
{
    bars = foos.Select(foo => foo.Bar);  // This is where the Parasoft violation would occur.
}