• 10个利用Eclipse调试Java的常见技巧


    http://www.open-open.com/news/view/1ad9099

    1. Conditional Breakpoint

    Hope we know how to add a breakpoint. If not, just click on the left pane (just before the line number) and a breakpoint will be created. In debug perspective, ‘Breakpoints’ view will list the breakpoint created. We can add a boolean condition to it. That is, the breakpoint will be activated and execution will hold only if the boolean condition is met otherwise this breakpoint will be skipped.

    10 个利用Eclipse调试Java的常见技巧

    2. Exception Breakpoint

    In Breakpoints view there is a button labeled as J! We can use that button to add a java exception based breakpoint. For example we want the program to halt and allow to debug when a NullPointerException is thrown we can add a breakpoint using this.

    10 个利用Eclipse调试Java的常见技巧

    3. Watch Point

    This is one nice feature I love. When a chosen attribute is accessed or modified program execution will halt and allow to debug. Select a class variable in Outline view and from its context menu select Toggle Watchpoint. This will create a watch point for that attribute and it will be listed in Breakpoints view.

    10 个利用Eclipse调试Java的常见技巧

    4. Evaluation (Display or Inspect or Watch)

    Ctrl+Shift+d or Ctrl+Shift+i on a selected variable or expression will show the value. We can also add a permanent watch on an expression/variable which will be shown in Expressions view when debug is on.

    10 个利用Eclipse调试Java的常见技巧

    5. Change Variable Values

    We can change the value of a variable on the fly during debug. Choose a variable and go to Variables view and select the value, type and enter.

    10 个利用Eclipse调试Java的常见技巧

    6. Stop in Main

    In Run/Debug Settings, Edit Configuration we can enable a check box that says Stop in main. If enabled when we debug a java program that launches with a main method, the execution halts at first line of main method.

    10 个利用Eclipse调试Java的常见技巧

    7. Environment Variables

    Instead of going to System properties to add an environment variable, we can conveniently add it through Edit Configuration dialog box.

    10 个利用Eclipse调试Java的常见技巧

    8. Drop to Frame

    This is the second best feature I love. We can just return the control to any frame in the call stack during debug. Changes made to variables will not be reset. Choose the stack level which you want to go back and restart debug from there and click the drop to frame button from debug toolbar. Eclipse is cool!

    10 个利用Eclipse调试Java的常见技巧

    9. Step Filter

    When we Step Into (F5) a method we may go into external libraries (like java) and we may not need it. We can add a filter in preferences and exclude packages.

    10 个利用Eclipse调试Java的常见技巧

    10. Step Into, Over and Return

    I kept this as the last point as this is the first thing to learn in debugging :-)

    • F5 – Step Into: moves to next step and if the current line has a method call the control will go into the first line of the called method.
    • F6 – Step Over: moves the control to next line. If there is a method call in the current line, it executes the method call internally and just moves the control to next line.
    • F7 – Step Return: When done from inside a method the control will move to the calling line from where the current method is invoked.
    • F8 – Move to next breakpoint.

    10 个利用Eclipse调试Java的常见技巧

  • 相关阅读:
    html 父容器和子容器通信
    5.7.13mysql 无法登陆
    c# foreach枚举器
    WPF bitmap转bitmapimage 使用 CreateBitmapSourceFromHBitmap内存泄漏
    c# 另存为excel
    CRC循环校验码
    一般处理程序
    DSS->数仓->数据集市->数据湖->数据中台->商业智能
    常见的消息中间件对比
    Dockerfile详解
  • 原文地址:https://www.cnblogs.com/exmyth/p/4588353.html
Copyright © 2020-2023  润新知