vote up 0 vote down star

I just want to step through my program with Visual Studio 2005, but when I try to copy what my teacher (kinda) showed me, I start stepping through some other files that spontaneously appear in my window. They're called random things like "xstring" and "ios" and I'm really frustrated. Please, how do I step through my code?

flag
Please edit your question to give a short, complete example of a method which you're trying to step through, and indicate which statement is unexpectedly taking you into STL code. – ChrisW Feb 22 at 20:33

4 Answers

vote up 4 vote down

Why it's happening: you're using objects from the Standard Template Library. Some of your statements are explicitly or implicitly invoking methods of these STL classes. You're stepping into these methods with your debugger.

There are two ways to fix this:

  • If you know that you're on a statment which invokes an STL method, then choose the debugger's "Step Over" (F10) command instead of its "Step Into" (F11) command.

  • If you get into one of these methods by mistake, then use the debugger's "Step Out" (Shift-F11) command.

link|flag
I'm trying to test what values are being assigned to variables in a section, and I seem to be stepping into these STL methods there... and I'm too much of a beginner to understand what's going on. – Amanda Feb 22 at 20:04
As a work-around, use "Step Out" (Shift-F11) if you do get into one of these methods. If it's any consolation, this is a bit of a well-known problem (i.e. it's not just you). – ChrisW Feb 22 at 20:34
vote up 1 vote down

Most likely what's happening is that you're stepping into built-in methods in the framework. When that happens, just click "step out" and you'll be back in your own code.

You can also use "step over" for those methods that you know are built in - of course risking to step over methods you want to step into.

My recommendation is that you make sure to place breakpoints at every line where you want to check the state of the application - that way you can just use the play button (F5).

link|flag
vote up 0 vote down

http://mark.michaelis.net/Blog/VisualStudioKeyboardShortcutsWrapupMSDNFlashFeb22009.aspx

Basically speaking you should use F10(step-over) and not F11(step-in) when current line of code contains call to not your function.

link|flag
I tried! That does strange things! – Amanda Feb 22 at 19:57
vote up 0 vote down

The best way to avoid stepping into such methods is to set NoStepInto rules in the registry. Check out this blog post for exactly how to do it.

If you want to avoid the whole of the standard library, just set the following rule:

10    std\:\:.*=NoStepInto

For Visual Studio 2005 you need to add the rule to the following key

HKLM\Software\Microsoft\VisualStudio\8.0\NativeDE\StepOver

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.