`
zhangyeny
  • 浏览: 31539 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

Eclipse debug 的五个技巧

 
阅读更多
Logical Structure
The logical structure is very handy for examining things like maps and other java collections classes, instead of showing the full detail of all the internal variables the view will only show the “logical” pieces. It is activated/deactivated from “Variables” view using logical structure toggle button.

[Code Sample]

[Logical Structure - Deactivated]

[Logical Structure - Activated]
Conditional Debugging
Once you know where an error occurs, you will want to see what the program is doing right before it crashes. One way to do this is to step through every statement in the program, one at a time, until you reach the point of concern. Sometimes it’s better to just run a section of code and stop execution at that point so you can examine data at that location. It’s possible to declare conditional breakpoints triggered whenever the value of an expression changes. In addition, code assist is available when typing in the conditional expression.

Right click your breakpoint and select Breakpoint Properties… to set a condition. Check “Enable Condition” box and write your expression below it. You can define a “hit count” that stops your code after that count is reached if you want.

[Conditional Debugging]
Java Exception Breakpoint
Use “Java Exception Breakpoint” feature to track your exceptions more easily. For example, your program might be throwing a NullPointerException or FileNotFoundException and you want to track it down. Rather than go to the line of code and set a breakpoint, you can specify that the debugger should always stop when the exception occurs.

[Java Exception Breakpoint]
Step Filtering
“Step Into” is one of the most used feature while debugging the source code. Sometimes, it takes us through several stack traces to reach the code we want to debug. In such cases, “Step with Filters” functionality can help us. It simply filters out the classes that we don’t want to step into.

To specify which classes to filter out when “Step with Filters” is used, the preferences must be set. To activate the preferences panel choose Window > Preferences from the main window. Once there navigate to Java > Debug > Step Filtering and choose the classes/packages to be filtered out. When you step through the code, ensure that the “Use Step Filters” toggle button in Debug view is on.

[Step Filtering - Selecting Classes]

[Step Filtering - Activate Step Filtering]
Expression Evaluation
“Inspect” is a handy feature for evaluating your expressions. In the Debug perspective, select your expression, right click it and select “Inspect” from the menu to evaluate. You can do it by simply Ctrl+Shift+I key combination.


“Display View” is another efficient helper in evaluating expressions. Activate it from Window > Show View > Display, write your expressions to evaluate and execute them by right clicking and selecting “Display” from the context menu in the Debug perspective or simply by Ctrl+Shift+D shortcut. You can use code assist (Ctrl+Space) to compose your expressions.
分享到:
评论

相关推荐

    Eclipse 的 Debug 介绍与技巧

    #### 三、Debug技巧 ##### 3.1 设置断点 断点的设置是调试的基础。在Eclipse中,只需在想要暂停执行的代码行左侧单击即可设置断点。断点图标通常为红色的小圆点。 ##### 3.2 调试程序 - **3.2.1 调试本地Java...

    Eclipse的Debug调试技巧大全

    【Eclipse Debug调试技巧详解】 Eclipse作为一款强大的Java集成开发环境,其强大的调试功能是开发者不可或缺的工具。本文将详细介绍Eclipse中的调试视图及其常用功能,帮助开发者提升调试效率。 1. **Debug视图** ...

    在Eclipse中使用debug(Eclipse调试常用技巧)

    在Eclipse中使用debug是软件开发中调试代码的一个重要环节,尤其对于Java开发者来说,Eclipse作为一个成熟的集成开发环境,提供了强大的调试工具和技巧。尽管图像内容无法直接查看,但是根据标题和描述,我们可以...

    eclipse中debug技巧

    ### Eclipse中的Debug技巧详解 #### 一、概述 在软件开发过程中,调试是必不可少的一环。Eclipse作为一款广泛使用的集成开发环境(IDE),提供了丰富的调试功能,可以帮助开发者高效地定位和解决代码中的问题。...

    Eclipse调试Debug的常用技巧

    本文将详细介绍Eclipse调试中的几个常用技巧,包括条件断点、变量断点、方法断点、改变变量值、重新调试、远程调试以及异常断点。 1、条件断点:条件断点允许我们在代码执行时设置特定条件,只有当条件满足时,程序...

    Eclipse的Debug调试技巧大全.docx

    ### Eclipse的Debug调试技巧详解 #### 一、Debug视图概览 Eclipse IDE 提供了一个强大的调试工具,可以帮助开发者高效地找出并修复程序中的错误。本文将详细讲解Eclipse中Debug视图的功能及其使用技巧。 #### 二...

    Eclipse_Debug_调试技巧入门_Eclipse_Debug_调试技巧入门_

    本文将深入探讨Eclipse的调试技巧,帮助您从入门到熟练掌握Eclipse的Debug功能。 首先,让我们了解Eclipse调试器。Eclipse调试器是Eclipse IDE中的核心组件之一,它允许开发者对Java应用程序进行逐步执行、查看变量...

    Eclipse_debug技巧

    ### Eclipse Debug 技巧详解 #### 一、概述 在软件开发过程中,调试是不可或缺的一环,它能够帮助开发者快速定位并解决问题。Eclipse作为一款流行的集成开发环境(IDE),提供了丰富的调试工具来辅助开发者进行...

    Eclipse debug 调试

    Eclipse Debug 调试技巧总结 Eclipse Debug 调试是一种实用的Java调试技巧,主要用于Eclipse操作讲述,讲述了多种调试技巧。下面是对Eclipse debug 调试的详细介绍: 一、断点调试 断点是调试中最基本的概念。在...

    在Eclipse中使用debug

    Eclipse 调试常用技巧 Eclipse 是一个功能强大的集成开发环境(IDE),它提供了许多实用的调试功能,以帮助开发者快速定位和解决问题。以下是 Eclipse 中一些常用的调试技巧: 1. 条件断点 条件断点顾名思义,...

    eclipse debug (调试) 学习心得

    5. **Resume (F8)**:当你希望继续执行程序直到遇到下一个断点时,可以使用Resume。在调试过程中,如果发现某个断点不再需要,可以移除它,然后使用Resume,程序会跳过已移除的断点并继续执行。 6. **Hit Count**...

    liferay tomcat eclipse debug

    标题 "liferay tomcat eclipse debug" 暗示了我们正在讨论如何在Eclipse环境中调试Liferay Portal,这是一个基于Java的开源企业级内容管理和协作平台,通常与Apache Tomcat这样的Servlet容器结合使用。以下是关于这...

    android开发--详解eclipse debug && eclipse快捷键

    #### 五、Eclipse Debug技巧 - **管理断点**:建议在每次调试结束时清除所有断点,以避免积累过多的断点影响性能。可以通过“Breakpoints”视图来管理和删除断点。 - **监控变量**:对于频繁变化的变量,应定期清理...

    Eclipse的Debug调试技巧大全(总结)

    本文将详细介绍Eclipse Debug视图的各种功能和技巧,使开发人员能够更好地掌握Debug技巧,提高开发效率和质量。 一、Debug视图简介 Debug视图是Eclipse中最常用的窗口之一,主要显示当前线程方法调用栈、代码行数...

    EclipseDebug技巧

    本文将深入探讨"EclipseDebug技巧"这一主题,帮助开发者提高工作效率,解决编程过程中遇到的问题。 首先,理解Eclipse调试器的基本操作至关重要。在Eclipse中,你可以通过点击工具栏上的"Debug"按钮或使用快捷键...

    Debug_c_c++_program_with_eclipse

    此时,Eclipse的工作界面将切换为Debug Perspective。 #### 进行调试 在Debug Perspective下,可以按照以下步骤开始调试: 1. 选择菜单栏中的【Run】->【Debug…】。 2. 设置完成后,点击【Debug】按钮开始调试。...

Global site tag (gtag.js) - Google Analytics