.NET:装箱时 double.Equals() 的奇怪行为

发布于 2024-08-31 21:39:08 字数 170 浏览 14 评论 0原文

这是怎么回事?

int zero = 0;
double x = 0;
object y = x;

Console.WriteLine(x.Equals(zero)); // True
Console.WriteLine(y.Equals(zero)); // False

What's going on here?

int zero = 0;
double x = 0;
object y = x;

Console.WriteLine(x.Equals(zero)); // True
Console.WriteLine(y.Equals(zero)); // False

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

差↓一点笑了 2024-09-07 21:39:08

在这里,您调用了两个不同的方法 - Double.Equals(double)Object.Equals(object)。对于第一次调用,int 可以隐式转换为 double,因此该方法的输入是 double,并且它会在两个 double 。然而,对于第二次调用,int没有被转换为double,它只是被装箱了。如果您查看反射器中的 Double.Equals(object) 方法,第一行是:

if (!(obj is double))
{
    return false;
}

因此它返回 false,因为输入是装箱的 int,而不是一个盒装的double

好捕获!

Here, you're calling two different methods - Double.Equals(double) and Object.Equals(object). For the first call, int is implicitly convertable to double, so the input to the method is a double and it does an equality check between the two doubles. However, for the second call, the int is not being cast to a double, it's only being boxed. If you have a look at the Double.Equals(object) method in reflector, the first line is:

if (!(obj is double))
{
    return false;
}

so it's returning false, as the input is a boxed int, not a boxed double.

Good catch!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文