gpt4 book ai didi

c# - 该对象为 null,但是检查它是否为 null 返回 false

转载 作者:太空狗 更新时间:2023-10-30 00:52:03 25 4
gpt4 key购买 nike

我在 C# 4.5 中遇到了一个奇怪的问题。

我的模型中有这个:

private DataMatrix<T> _matrix;

public DataMatrix<T> Matrix
{
get { return _matrix; }
set { _matrix = value; }
}

我有一个使用它的属性:

public object SingleElement
{
get
{
if (Matrix == null) return String.Empty;

if (Matrix.ColumnCount >= 1 && Matrix.RowCount >= 1)
{
return Matrix[0, 0];
}
return null;
}
}

当我运行它时,在调用 SingleElement 之前,Matrix 属性为空。但它不返回 String.Empty,而是转到第二个 if 语句。

这是我的即时窗口说: Immediate window

我有点困惑。我做错了什么?

最佳答案

这很可能是一个损坏的相等运算符 (==),可以使用以下代码重现:

class Foo
{
public static bool operator == (Foo x, Foo y)
{
return false; // probably more complex stuff here in the real code
}
public static bool operator != (Foo x, Foo y)
{
return !(x == y);
}
static void Main()
{
Foo obj = null;
System.Diagnostics.Debugger.Break();
}
// note there are two compiler warnings here about GetHashCode/Equals;
// I am ignoring those for brevity
}

现在在立即窗口的断点处:

?obj
null
?(obj==null)
false

两个修复:

  • 首选是修复运算符,也许在其他任何事情之前添加:

    if(ReferenceEquals(x,y)) return true;
    if((object)x == null || (object)y == null) return false;
    // the rest of the code...
  • 替代方案,如果您无法编辑该类型,则避免使用运算符;考虑在您的代码中显式使用 ReferenceEquals,或执行基于 objectnull 检查;例如:

    if(ReferenceEquals(Matrix, null)) ...

    if((object)Matrix == null) ...

关于c# - 该对象为 null,但是检查它是否为 null 返回 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23629428/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com