idea调试第一个java小程序

上一篇创建了,这一篇肯定要调试啊,呵呵

 

Before you start...

You have already created and executed your first Java application. Now it's time todebug it.

However, it would be nice to add one more line to the application - let it be

System.out.println("it's me, Wombat!");Copy

Putting breakpoints

To start a debugger session, first of all you need to place a breakpoint at the statement where you want to suspend the execution of your application. The existing source code does not give you much of a choice - the only place, where you can put breakpoints, are the statements

System.out.println("Hello World!"); System.out.println("it's me, Wombat!");Copy

So let's do it. Click the left gutter at the line of the statement you want to put a breakpoint on, or just press Ctrl+F8:

/help/img/idea/2017.2/HWDebug_create_breakpoint.png

As you see, the new breakpoint is added to the source code. The line where the breakpoint is set changes its color to pink.

If you just hover your mouse pointer over the breakpoint, you will see its properties in the tooltip:

/help/img/idea/2017.2/HWDebug_view_breakpoint.png

Suppose you want to change some properties of this breakpoint. Then right-click it and see the following dialog box:

/help/img/idea/2017.2/HWDebug_breakpoint_properties.png

Finally, you would like to explore and change all the available properties of a breakpoint and see its location among the other breakpoints (if any). In this case, press Ctrl+Shift+F8:

/help/img/idea/2017.2/HWDebug_breakpoint_properties_full.png

Starting a debugger session

Now that the breakpoints are added, you can debug your application. This can be done in numerous ways; however, let's follow the easiest one.

Mind the icon /help/img/idea/2017.2/left_gutter_run.png that marks a class with the main() method. Clicking this icon reveals a menu that enables running and debugging such a class:

/help/img/idea/2017.2/HWDebug_start_session.png

What does it mean?

IntelliJ IDEA launched the debugger session with the temporary run/debug configuration. This run/debug configuration has the default name "HelloWorld.main()'. To view and change the settings of this run/debug configuration, choose Run | Edit Configurations... on the main menu:

/help/img/idea/2017.2/ij_runConfigMenu.png

or click the run/debug configuration selector, and then choose Edit Configurations...:

/help/img/idea/2017.2/HWDebug_runconfig.png

IntelliJ IDEA compiles your application (which takes time!), and then suspends the application at the first breakpoint.

The IntelliJ IDEA window now looks different:

  • The first thing that has changed is the color of the first line with the breakpoint. Now this line is rendered blue:

    /help/img/idea/2017.2/HWDebug_breakpoint_hit.png

    It means that (according to the breakpoint properties) the application has reached this breakpoint, hit it and suspended before the statementprintln.

  • Next, in the lower part of the IntelliJ IDEA window, a special tool window has emerged. This is the Debug tool windowthat features the stepping toolbar and shows all the necessary information you might need during the debugger session:

    /help/img/idea/2017.2/HWDebug_toolwindow.png

Stepping through the application

Stepping through the statements directly

Let's step through the application. Click /help/img/idea/2017.2/frames_step_over.pngon the stepping toolbar, or just press F8.

The next line now becomes blue. If you look at the Debug tool window, you notice the following changes:

  • In the Frames pane, the next line number is shown.
  • The Console tab is marked with the icon /help/img/idea/2017.2/console_info_icon.png, which means that it contains new output.

/help/img/idea/2017.2/HWDebug_breakpoint2_hit.png

Click the Console tab. You see the message of the first line with the breakpoint "Hello, World!". The second message is not yet visible:

/help/img/idea/2017.2/HWDebug_console.png

Click /help/img/idea/2017.2/frames_step_over.png again on the stepping toolbar, or press F8. Now the second message appears in the console. After you click /help/img/idea/2017.2/frames_step_over.pngthe next time, the application stops:

/help/img/idea/2017.2/HWDebug_console2.png

This debugging session is over.

Stepping through the method calls

Now let's explore a more complicated way and step into the println() call.

First, restart the debugger session. To do that, just click /help/img/idea/2017.2/debug.png on the toolbar of theDebug tool window. Thus you'll rerun the latest run/debug configuration, namely, HelloWorld.

The application again pauses at the first breakpoint. This time, click /help/img/idea/2017.2/frames_force_step_into.png, or press Shift+Alt+F7. You see a different picture:

/help/img/idea/2017.2/HWDebug_step_into_class.png

It means that IntelliJ IDEA has stepped into the method println(String x) of the library class PrintStream.java. Note that a new thread appears in the list of threads.

Click /help/img/idea/2017.2/frames_step_out.png or press Shift+F8 to return to the next breakpoint:

/help/img/idea/2017.2/HWDebug_breakpoint3_hit.png

Note that the Console tab has again got the marker /help/img/idea/2017.2/console_info_icon.png, which means that new output is available. Next, click /help/img/idea/2017.2/frames_step_over.png. You see that the process terminates:

/help/img/idea/2017.2/HWDebug_application_stop.png

转载于:https://my.oschina.net/xoyo/blog/1476430

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值