Scala 模式匹配中的自动拆箱

发布于 2024-12-09 19:33:14 字数 275 浏览 0 评论 0原文

在下面的代码中,我收到一个编译错误,指出“x”上存在类型不匹配:

val someRef: java.lang.Long = 42L
someRef match {
  case x: Long => println("The answer: " + x)
  case _ => println("Unknown")
}

How do I get Scala to auto-unbox someRef in the match statements?

In the following code, I am getting a compilation error stating that I have a type mismatch on 'x':

val someRef: java.lang.Long = 42L
someRef match {
  case x: Long => println("The answer: " + x)
  case _ => println("Unknown")
}

How do I get Scala to auto-unbox someRef in the match statement?

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

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

发布评论

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

评论(1

吹梦到西洲 2024-12-16 19:33:14

类型系统不知道这个级别的拳击。但它确实知道,如果存在 Any,则装箱的 Long 实际上(大概)应该只是一个 Long (来自 < code>AnyVal 类继承树的一部分)。所以:

val someRef: java.lang.Long = 42L
(someRef: Any) match {
  case x : Long => println("The answer is " + x)
  case _ => println("What answer?")
}

The type system doesn't know about boxing at this level. But it does know that if there is an Any, a boxed Long is really (presumably) supposed to be just a Long (from the AnyVal part of the class inheritance tree). So:

val someRef: java.lang.Long = 42L
(someRef: Any) match {
  case x : Long => println("The answer is " + x)
  case _ => println("What answer?")
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文