Debuggin terms | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Debuggin terms

What does it mean and where to use it: step into, step out, next line, next instruction, run to cursor, step into instruction. I'm bit confused among these terms. Not getting any better explanation in google.

31st Jul 2018, 7:07 AM
N1H4R
N1H4R - avatar
3 Answers
+ 3
Those commands tell debugger where to place the next temporary breakpoint. For example, now we are observing the breakpoint at the line, which call a function. If we want to see what's doing inside the function, we hit step into. Otherwise hit next line and that function will be executed without breaks. Step out skips breaks inside the function after step in. Run to cursor puts breakpoint at the selected line. Etc.
31st Jul 2018, 7:35 AM
Микола Федосєєв
Микола Федосєєв - avatar
+ 1
yes
1st Aug 2018, 9:34 PM
Микола Федосєєв
Микола Федосєєв - avatar
0
Step into works the same for if,else if,else & loops ??
1st Aug 2018, 6:35 PM
N1H4R
N1H4R - avatar