Changes between Version 5 and Version 6 of ControlSystems/SoftwareTeam/Training/GettingStarted/IntroJava


Ignore:
Timestamp:
Sep 30, 2019, 4:35:44 PM (6 years ago)
Author:
David Albert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ControlSystems/SoftwareTeam/Training/GettingStarted/IntroJava

    v5 v6  
    4646== Debugger
    4747With the !VariablesExample.java program above open in the editor click to the left of the line number (7) for the line a=3; and a red dot will appear called a breakpoint.
    48 [[Image(breakpoint.jpg)]]
     48[[Image(breakpoint.jpg, 50%)]]
    49491. Click Debug->Start Debugging
    50502. The program will start running but will stop (break) at line 7
    51 [[Image(stopped.jpg)]]
     51[[Image(stopped.jpg, 50%)]]
    52523. Click on the Step-over icon [[Image(stepover.jpg)]] above the editor (or press function key F10) to execute that line of code and then stop again
    53534. Observe the Variables window in the left navigation panel and note that there is now a variable named 'a' with the value 3