[VS] 디버깅 F10과 F11의 차이

Posted by RAY.D
2015. 4. 30. 15:20 프로그래밍 도구/Visual Studio
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.



F10 ("step over") does not descend any further into the call stack. It moves to the next line of the current function.

F11 ("step into") drills down into the function being called.

void function1()
{
    function2();
    function3();
}

If you hit a breakpoint on function2(), F10 will advance to the line function3(). F11 will advance to the first line inside function2.