设置断点意味着什么?
The documentation for Eclipse states that a blue circle icon represents an
enabled line breakpoint
and that a checkmark is an
adornment that marks a line breakpoints as installed
What's the difference between active, installed and enabled, when referring to breakpoints? Is installed -- in this case -- an Eclipse-specific definition?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这个线程(2002!)有一个很好的解释对于已安装的断点
如 jdt文档:
This thread (2002!) has a good explanation for installed breakpoints
As mentioned in jdt documentation:
我认为这是一个已编译的断点,下次运行时可用。
I think it's a breakpoint that's been compiled and is available next time you run.
Installed 意味着程序在调试时确实会遇到该断点。
Installed means that the program will indeed hit that break point when debugging.