此代码可以正常工作:
it("should propagate exceptions") {
intercept[RuntimeException] {
val future = Future { Thread.sleep(10); sys.error("whoops"); 22 }
Await.result(future, Duration.Inf)
}.getMessage should equal ("whoops")
}
但这不是:
it("should propagate errors") {
intercept[StackOverflowError] {
val future = Future { Thread.sleep(10); throw new StackOverflowError("dang"); 22 }
Await.result(future, Duration.Inf)
}.getMessage should equal ("dang")
}
第二次测试的未来永远不会回来。为什么Error
子类(而不是Exception
子类)终止了我的未来?我应该如何处理Error
?
编辑:这可能与Why does Scala Try not catching java.lang.StackOverflowError?有关,但并不相同。我不在这里使用Try
。核心问题是Future
根本不会返回;我无法捕捉到任何错误,因为它只是挂起。
答案 0 :(得分:0)
如评论中所指出,这是Why does Scala Try not catching java.lang.StackOverflowError?
的副本根据Scala文档。
注意:Try上的组合器仅捕获非致命异常(请参见> scala.util.control.NonFatal)。另一方面,严重的系统错误将被抛出。
没有抛出错误->尝试捕获错误
还可以回答有关通常如何进行错误处理的问题。 在Scala中,您可以对可能导致异常的代码使用try / catch(非常类似于Java):
try {
// ... Your dangerous code in here
} catch {
case ioe: IOException => ... //
case e: Exception => ...
}
而且您应该始终首先拥有更具体的例外。
您提供的代码如下所示: https://scastie.scala-lang.org/2DJXJ6ESS9ySJZSwSodmZg
我也尝试了您的代码,它肯定会产生StackOverFlowerror。 但是它不能像上面提到的链接所解释的那样正确地捕获它。
答案 1 :(得分:0)
reporter
功能用于灾难,它仅挂接到线程的UncaughtExceptionHandler
,但看起来仅在使用默认线程工厂时即可使用:
scala 2.13.0-M5> import concurrent._,java.util.concurrent.Executors
import concurrent._
import java.util.concurrent.Executors
scala 2.13.0-M5> val ec = ExecutionContext.fromExecutor(null, e => println(s"Handle: $e"))
ec: scala.concurrent.ExecutionContextExecutor = scala.concurrent.impl.ExecutionContextImpl$$anon$3@5e7c141d[Running, parallelism = 4, size = 0, active = 0, running = 0, steals = 0, tasks = 0, submissions = 0]
scala 2.13.0-M5> val f = Future[Int](throw new NullPointerException)(ec)
f: scala.concurrent.Future[Int] = Future(<not completed>)
scala 2.13.0-M5> f
res0: scala.concurrent.Future[Int] = Future(Failure(java.lang.NullPointerException))
scala 2.13.0-M5> val f = Future[Int](throw new StackOverflowError)(ec)
Handle: java.lang.StackOverflowError
f: scala.concurrent.Future[Int] = Future(<not completed>)
而
scala 2.13.0-M5> val ec = ExecutionContext.fromExecutor(Executors.newSingleThreadExecutor, e => println(s"Handle: $e"))
ec: scala.concurrent.ExecutionContextExecutor = scala.concurrent.impl.ExecutionContextImpl@317a118b
scala 2.13.0-M5> val f = Future[Int](throw new StackOverflowError)(ec)
f: scala.concurrent.Future[Int] = Future(<not completed>)
Exception in thread "pool-1-thread-1" java.lang.StackOverflowError
at $line14.$read$$iw$$iw$$iw$$iw$.$anonfun$f$1(<console>:1)
at scala.concurrent.Future$.$anonfun$apply$1(Future.scala:659)
at scala.util.Success.$anonfun$map$1(Try.scala:261)
at scala.util.Success.map(Try.scala:209)
at scala.concurrent.impl.Promise$Transformation.doMap(Promise.scala:420)
at scala.concurrent.impl.Promise$Transformation.run(Promise.scala:402)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
您可以构建一个设备,该设备在运行时记录未来,并且可以安全地知道线程何时耗尽。例如,也许您想重试具有较低最大递归深度的算法。