Scala:无法捕获闭包内引发的异常

发布于 2024-08-28 20:42:13 字数 407 浏览 4 评论 0原文

免责声明:Scala 中的绝对新手:(

我有以下定义:

def tryAndReport(body: Unit) : Unit = {
  try {
    body
  } catch {
    case e: MySpecificException => doSomethingUseful
  }
}

我这样称呼它:

tryAndReport{
  someCodeThatThrowsMySpecificException()
}

虽然对 someCodeThatThrowsMySpecificException 的调用发生得很好,但 tryAndReport 中没有捕获异常。

为什么?

谢谢!

Disclaimer: absolute novice in Scala :(

I have the following defined:

def tryAndReport(body: Unit) : Unit = {
  try {
    body
  } catch {
    case e: MySpecificException => doSomethingUseful
  }
}

I call it like this:

tryAndReport{
  someCodeThatThrowsMySpecificException()
}

While the call to someCodeThatThrowsMySpecificException happens just fine, the exception is not being caught in tryAndReport.

Why?

Thank you!

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

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

发布评论

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

评论(2

断肠人 2024-09-04 20:42:13

尝试将正文从 Unit 更改为 =>;单位。按照现在的定义方式,它认为 body 是一个要计算为 Unit 的代码块。使用按名称调用,它将在定义的 try 中执行,并且应该被捕获。

Try changing body from Unit to => Unit. The way its defined now, it considers body a block of code to evaluate to Unit. Using call-by-name, it will be executed in the try as defined and should be caught.

枕花眠 2024-09-04 20:42:13

tryAndReport 方法中的 body 不是闭包或块,而是一个值(Unit 类型)。

我不建议使用按名称参数,而是使用显式函数。

def tryAndReport(block: () => Unit): Unit = {
  try { block() }
  catch { case e: MSE => dSU }
}

The body in your tryAndReport method is not a closure or block, it's a value (of type Unit).

I don't recommend using a by-name argument, but rather an explicit function.

def tryAndReport(block: () => Unit): Unit = {
  try { block() }
  catch { case e: MSE => dSU }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文