c# – “使用未分配的局部变量”错误的原因是什么?

前端之家收集整理的这篇文章主要介绍了c# – “使用未分配的局部变量”错误的原因是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Are C# uninitialized variables dangerous?6个
使用此代码
bool dataToAdd;
if (null == _priceComplianceDetailList) return dataToAdd;

我收到编译错误,“使用未分配的局部变量’dataToAdd’”

所以我不得不明确地给布尔分配“假”:

bool dataToAdd = false;
if (null == _priceComplianceDetailList) return dataToAdd;

在上下文中:

private bool PopulateSheetWithDetailData()
{
    bool dataToAdd = false;
    if (null == _priceComplianceDetailList) return dataToAdd;
    List<PriceComplianceDetail> _sortedDetailList =
    . . .
    return _sortedDetailList.Count > 0;
}

为什么有必要? bool的默认值是否为false?

解决方法

因为默认情况下未初始化局部变量.您应该明确初始化它们.它是一种编译器功能,可以避免将来出现错误.它在语言规范 herehere中得到澄清.

The reason this is illegal in C# is because using an unassigned local
has high likelihood of being a bug

如果您想知道此决定的原因,请参阅here.

原文链接:https://www.f2er.com/csharp/244149.html

猜你在找的C#相关文章