我有一段代码在scala repl中运行。 该代码引发异常。 如何找出那条线? 在堆栈跟踪中有行号,但是它们是错误的。 在下面的示例中,stacktrace表示在第13行引发了异常,但是代码只有5行。
$ scala
Welcome to Scala 2.12.8 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_171).
Type in expressions for evaluation. Or try :help.
scala> :paste
// Entering paste mode (ctrl-D to finish)
if (math.random > 0.5) {
throw new Exception()
} else {
throw new Exception()
}
// Exiting paste mode, now interpreting.
java.lang.Exception
... 28 elided
scala> lastException.printStackTrace
java.lang.Exception
at $line3.$read$$iw$$iw$.<init>(<console>:13)
at $line3.$read$$iw$$iw$.<clinit>(<console>)
at $line3.$eval$.$print$lzycompute(<console>:7)
at $line3.$eval$.$print(<console>:6)
at $line3.$eval.$print(<console>)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at scala.tools.nsc.interpreter.IMain$ReadEvalPrint.call(IMain.scala:742)
答案 0 :(得分:3)
我对Ammonite REPL的运气更好。
@ {
if (math.random > 0.5) {
throw new Exception()
} else {
println("here")
throw new Exception()
}
}
java.lang.Exception
ammonite.$sess.cmd2$.<init>(cmd2.sc:2)
ammonite.$sess.cmd2$.<clinit>(cmd2.sc)
@
@ {
if (math.random > 0.5) {
throw new Exception()
} else {
println("here")
throw new Exception()
}
}
here
java.lang.Exception
ammonite.$sess.cmd3$.<init>(cmd3.sc:5)
ammonite.$sess.cmd3$.<clinit>(cmd3.sc)
将if
语句计为第1行,然后第2行和第5行在这里看来是正确的,可以抛出异常。