堆栈跟踪中的数字是什么意思?

发布于 2024-08-18 07:35:54 字数 340 浏览 3 评论 0原文

如何使用堆栈跟踪中的数字?这些是什么意思? 在 Eclipse 中,我经常遇到异常,例如 NullPointerException:

java.lang.NullPointerException
  at com.sun.midp.lcdui.DefaultEventHandler.commandEvent(+68)
  at com.sun.midp.lcdui.AutomatedEventHandler.commandEvent(+47)
  at com.sun.midp.lcdui.DefaultEventHandler$QueuedEventHandler.handleVmEvent(+186) 

How can I use the numbers in the stacktrace? What do these mean?
In eclipse I get often exceptions, for example a NullPointerException:

java.lang.NullPointerException
  at com.sun.midp.lcdui.DefaultEventHandler.commandEvent(+68)
  at com.sun.midp.lcdui.AutomatedEventHandler.commandEvent(+47)
  at com.sun.midp.lcdui.DefaultEventHandler$QueuedEventHandler.handleVmEvent(+186) 

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

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

发布评论

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

评论(1

白龙吟 2024-08-25 07:35:54

这些是导致异常的指令距方法开头的偏移量。

java.lang.NullPointerException
  at com.sun.midp.lcdui.DefaultEventHandler.commandEvent(+68)

com.sun.midp.lcdui.DefaultEventHandler.commandEvent 方法中偏移量 68 处的指令通过访问空引用导致实际异常。

  at com.sun.midp.lcdui.AutomatedEventHandler.commandEvent(+47)

com.sun.midp.lcdui.AutomatedEventHandler.commandEvent 方法中偏移量 47 处的指令是运行 com.sun.midp.lcdui.DefaultEventHandler.commandEvent 的调用指令> 方法。

  at com.sun.midp.lcdui.DefaultEventHandler$QueuedEventHandler.handleVmEvent(+186)

com.sun.midp.lcdui.DefaultEventHandler$QueuedEventHandler.handleVmEvent 方法中偏移量 186 处的指令是运行 com.sun.midp.lcdui.AutomatedEventHandler.commandEvent< 的调用指令/代码> 方法。

Those are the offsets of the instruction that caused the exception from the beginning of the method.

java.lang.NullPointerException
  at com.sun.midp.lcdui.DefaultEventHandler.commandEvent(+68)

The instruction at offset 68 in the method com.sun.midp.lcdui.DefaultEventHandler.commandEvent is causing the actual exception by accessing a null reference.

  at com.sun.midp.lcdui.AutomatedEventHandler.commandEvent(+47)

The instruction at offset 47 in the method com.sun.midp.lcdui.AutomatedEventHandler.commandEvent is a call instruction that runs the com.sun.midp.lcdui.DefaultEventHandler.commandEvent method.

  at com.sun.midp.lcdui.DefaultEventHandler$QueuedEventHandler.handleVmEvent(+186)

The instruction at offset 186 in the method com.sun.midp.lcdui.DefaultEventHandler$QueuedEventHandler.handleVmEvent is a call instruction that runs the com.sun.midp.lcdui.AutomatedEventHandler.commandEvent method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文