Try
は、以下の例のようにスレッド間例外をキャッチすると考えていました。私はそうではないと思います:子スレッドで発生した例外をどうやってキャッチしますか?Scala:子スレッドで例外をキャッチする方法
// Simple class that throws error
class Child extends Runnable {
def run {
val exception: Exception = new Exception("Foo")
val i = 1
Thread.sleep(1000)
val lines = scala.io.Source.fromFile("/tmp/filefoobar.txt").mkString
Thread.sleep(1000)
}
}
// spawn the class above
def Parent() = {
val doit = Try {
val t = new Thread(new Child)
t.start
t.join()
}
doit match {
case Success(v) => println("uh oh did not capture error")
case Failure(v) => println("good we caught the error")
}
}
出力 スカーラ>親()
Exception in thread "Thread-35" java.io.FileNotFoundException: /tmp/filefoobar.txt (No such file or directory)
at java.io.FileInputStream.open0(Native Method)
at java.io.FileInputStream.open(FileInputStream.java:195)
at java.io.FileInputStream.<init>(FileInputStream.java:138)
at scala.io.Source$.fromFile(Source.scala:91)
at scala.io.Source$.fromFile(Source.scala:76)
at scala.io.Source$.fromFile(Source.scala:54)
at $line120.$read$$iw$$iw$Child.run(<console>:16)
at java.lang.Thread.run(Thread.java:745)
uh oh did not capture error
私はエラーをキャッチした場合、子がtryブロックとして例外をスローすると、親はその例外を取得しますか?例外を「自分自身」に投げ込むにはどうすればよいですか?結局のところ、コードの中には、エラーがスローされてスタックに上がり、親に到達しません。子供に明示的にエラーを投げることはできますか? – user7938511