Open main menu

CDOT Wiki β

Changes

Team1/Debugging your programs

600 bytes added, 00:54, 31 January 2011
12. Debugging Your Program
'''12.5. Step Into:'''To move forward in the program and step into method press F5 or use Step Into button in the Debug view.
<br/>
<br />
[[Image:Debug8.jpg|600px ]]<br/><br/>
'''12.6. Other Useful Function keys:''' Normal 0 false false false EN-US X-NONE AR-SA F7: will go to the caller of the method/ function. So this will leave the current code and go to the calling code.<br/> F8: goes to the next break point. If no further break point is encountered then the program will normally run. <br/> '''12.7. Add Watch:'''To see the value of a variable or an statement, you need to add watch to it. Select the variable, right click and select "Watch" from the menu. The variable will be added as Expression in Expression view and the value of it is shown in any step of the debugger.
<br/>
[[Image:Debug9.jpg|600px ]]<br/><br/>
[[Image:Debug10.jpg|600px ]]<br/><br/>
1
edit