How to use Eclipse's Display View for Debug?

后端 未结 5 1736
猫巷女王i
猫巷女王i 2020-12-13 12:49

At the link below it explains that the \"display view allows you to manipulate live code in a scrapbook type fashion (see Figure 8). To manipulate a variable, simply type t

相关标签:
5条回答
  • 2020-12-13 13:31

    I think this powerful feature should be used way more often.

    1. In the debug perspective: Window -> Show View -> (search for) Display
    2. Put a break point in your code
    3. Trigger the breakpoint by executing this code
    4. Once on the breakpoint go to the Display view
    5. Write some code like myObject.getSomeData();, you can autocomplete (Ctrl+Space)
    6. Select the expression (code) you want to evaluate
    7. Use one of the many display view buttons which should now be enabled
    8. Save some precious time...

    Not sure why this view is not there by default, it should be !

    0 讨论(0)
  • 2020-12-13 13:31

    As of Eclipse Photon Release (4.8.0)

    This same functionality can be performed inside the the Debug Shell. I do this by:

    1. Make sure I'm at a breakpoint in a Debug execution of some script
    2. Open the Debug Shell
    3. Type in the code that I want to run
    4. Highlight the specific line of code
    5. Use either of the buttons for: Execute Selected Text, or Display Result of Evaluating Selected Text

    I'm including this answer because as of 2018, with the Photon Release, I was unable to get the Display view to work in any capacity or to even show up. But I was able to perform the same work through this method.

    0 讨论(0)
  • 2020-12-13 13:34

    You can view the Display view as a place where you can inspect all sorts of variables and boolean expressions during runtime. While your debugger is frozen on a breakpoint start typing the name of an object variable for instance and you'll get autocomplete functionality as you start calling methods or fields to reach deeper class datastructures. Then when you select/mark the portion you need to inspect or everything, the buttons on the Display view will be clickable. You can always perform the Ctrl+Shift+I shortcut on the selection to view what's the current runtime state of your selection i.e. variable, object, boolean exrepssion etc

    0 讨论(0)
  • 2020-12-13 13:44

    When you've stopped at a breakpoint, you can write or paste code into the Display view, select it, and press Ctrl+Shift+I to inspect (i.e. evaluate) the selection.

    0 讨论(0)
  • 2020-12-13 13:51

    It will only work while running in debug, and you can only manipulate variables that are live in the context of the currrent thread, which means that you need to place a breakpoint at (or just after) the point where the variables you want to inspect become active. Whilst you hold on the breakpoint you can use the Display tab to interact (execute code snippets, evaluate etc..) with all the variables that you can see in the Variables tab

    0 讨论(0)
提交回复
热议问题