在 Scala 中,为什么模式匹配没有选取 NaN?

发布于 2024-11-27 13:38:41 字数 209 浏览 2 评论 0原文

我的方法如下

  def myMethod(myDouble: Double): Double = myDouble match {
    case Double.NaN => ...
    case _ => ...
  }

IntelliJ 调试器显示 NaN,但这在我的模式匹配中没有被拾取。我是否遗漏了可能的情况

My method is as follows

  def myMethod(myDouble: Double): Double = myDouble match {
    case Double.NaN => ...
    case _ => ...
  }

The IntelliJ debugger is showing NaN but this is not being picked up in my pattern matching. Are there possible cases I am omitting

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

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

发布评论

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

评论(3

旧伤慢歌 2024-12-04 13:38:41

这是根据 IEEE 754 比较 64 位浮点数的一般规则(与 Scala 甚至 Java 无关,请参阅 NaN):

double n1 = Double.NaN;
double n2 = Double.NaN;
System.out.println(n1 == n2);     //false

这个想法是 NaN未知不确定的标记值。比较两个未知值应该总是产生false,因为它们是很好......未知的。


如果您想将模式匹配与 NaN 一起使用,请尝试以下操作:

myDouble match {
    case x if x.isNaN => ...
    case _ => ...
}

但我认为模式匹配将使用严格的双重比较,因此请小心使用此构造。

It is a general rule how 64-bit floating point numbers are compared according to IEEE 754 (not Scala or even Java related, see NaN):

double n1 = Double.NaN;
double n2 = Double.NaN;
System.out.println(n1 == n2);     //false

The idea is that NaN is a marker value for unknown or indeterminate. Comparing two unknown values should always yields false as they are well... unknown.


If you want to use pattern matching with NaN, try this:

myDouble match {
    case x if x.isNaN => ...
    case _ => ...
}

But I think pattern matching will use strict double comparison so be careful with this construct.

橘虞初梦 2024-12-04 13:38:41

您可以编写一个提取器(根据 bse 的评论更新):

object NaN {
  def unapply(d:Double) = d.isNaN
}


0.0/0.0 match {
  case NaN() => println("NaN")
  case x => println("boring " + x)
}
//--> NaN

You can write an extractor (updated according to bse's comment):

object NaN {
  def unapply(d:Double) = d.isNaN
}


0.0/0.0 match {
  case NaN() => println("NaN")
  case x => println("boring " + x)
}
//--> NaN
浊酒尽余欢 2024-12-04 13:38:41

托马斯是正确的。您应该使用 isNaN 代替。

scala> Double.NaN.isNaN
res0: Boolean = true

Tomasz is correct. You should use isNaN instead.

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