什么是“bci”?在 jdb 中调试时?

发布于 2024-12-08 10:18:47 字数 170 浏览 1 评论 0原文

在命令行上使用 jdb 进行调试时,它会在每个步骤后向我显示一个状态行,如下所示:

Step completed: "thread=main", [class name].[method], line=10 bci=20

什么是 bci 以及它对我有何用处?

While debugging with jdb on the command line, it shows me a status line after each step that looks like this:

Step completed: "thread=main", [class name].[method], line=10 bci=20

What is bci and how can it be useful to me?

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

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

发布评论

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

评论(1

白首有我共你 2024-12-15 10:18:47

它的意思是字节码索引。单行,甚至单个 Java 语句,都可以转换为多个字节码指令。字节码索引告诉您执行了哪条字节码指令。

It means byte code index . A single line, even a single Java statement, may translate to several bytecode instructions. The byte code index tells you which bytecode instruction was executed.

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