Java Debugger运行应用程序而不会中断

时间:2015-07-18 18:06:30

标签: java debugging command-line jdb throwable

我有无处不在的HelloWorldApp.java文件

/**
 * The HelloWorldApp class implements an application that
 * simply prints "Hello World!" to standard output.
 */
class HelloWorldApp {
    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}

我跑:

javac HelloWorldApp.java

然后我跑:

jdb HelloWorldApp

我明白了:

Initializing jdb ...
> 

我输入:

stop at HelloWorldApp.main:7

提示

然后我得到

Deferring breakpoint HelloWorldApp.main:7.
It will be set after the class is loaded.
>

我输入:

run

提示

然后我得到

Set uncaught java.lang.Throwable
Set deferred uncaught java.lang.Throwable
> 
VM Started: Hello World!

The application exited

我没有在最后一个提示中键入任何内容,它只是退出而没有破坏。我的问题是为什么它会输出那些Throwable行以及为什么调试器没有在我给它的断点处停止?

1 个答案:

答案 0 :(得分:5)

我刚刚在JDB文档中检查了stop的语法

stop in <class-name>.<method-name>  Stop on entry to the given method.
stop at <class-name>:<line-number>  Stop at the given line.

我认为你命令停止应该是以下任何一个

stop in HelloWorldApp.main 
stop at HelloWorldApp:7

尝试看一下修复您的问题!